From c09b4e1477cf75039badb3ffa6b79a2e53419cfb Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Wed, 16 Sep 2015 11:17:00 -0400 Subject: [PATCH] Share dialog: Hide settings dialog before showing #3783 --- src/gui/owncloudgui.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp index 58514e0cce..14cc819298 100644 --- a/src/gui/owncloudgui.cpp +++ b/src/gui/owncloudgui.cpp @@ -765,6 +765,10 @@ void ownCloudGui::slotShowShareDialog(const QString &sharePath, const QString &l qDebug() << "Could not open share dialog for" << localPath << "no responsible folder found"; return; } + + // For https://github.com/owncloud/client/issues/3783 + _settingsDialog->hide(); + const auto accountState = folder->accountState(); qDebug() << Q_FUNC_INFO << "Opening share dialog" << sharePath << localPath;