Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2018-04-12 12:42:11 +0300
committerCamila San <hello@camila.codes>2018-06-01 13:05:43 +0300
commitd53e62d06cb00b96b3721fccccf8c3067ceea1ee (patch)
tree67e85351def1b0d9e636332eb56a9ac668072e96
parent335298f4e2f022c830e048234b1a65bd97e99185 (diff)
Share dialog: Don't hide account settings before showing #6185upstream/pr/6452
At least on windows and linux. OSX would need tests first since the addition was originally supposed to help with OSX problems, see #3783.
-rw-r--r--src/gui/owncloudgui.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp
index fc00b4af3..2305ac920 100644
--- a/src/gui/owncloudgui.cpp
+++ b/src/gui/owncloudgui.cpp
@@ -1123,8 +1123,11 @@ void ownCloudGui::slotShowShareDialog(const QString &sharePath, const QString &l
return;
}
+#ifdef Q_OS_MAC
// For https://github.com/owncloud/client/issues/3783
+ // see also #6185, #3015
_settingsDialog->hide();
+#endif
const auto accountState = folder->accountState();