This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 218d222 debian/changelog: Fix too-long-lines in current stanza. new 5dfc54f Don't close X2Go Client if settings dialog is called before broker auth. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian-common/changelog | 1 + src/onmainwindow.cpp | 6 ++++++ 2 files changed, 7 insertions(+) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 5dfc54ffa3fdbc376f013c3de45cd8f6df012f56 Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Wed Mar 17 09:48:35 2021 -0600 Don't close X2Go Client if settings dialog is called before broker auth. --- debian-common/changelog | 1 + src/onmainwindow.cpp | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/debian-common/changelog b/debian-common/changelog index d4d21fd..e9d97ac 100644 --- a/debian-common/changelog +++ b/debian-common/changelog @@ -16,6 +16,7 @@ x2goclient (4.1.2.3-0x2go1) UNRELEASED; urgency=medium session files with .x2go extension. - X2Go Client will send it's version to the broker when sending client event. + - Don't close X2Go Client if settings dialog is called before broker auth. [ Ryan Schmidt ] * New upstream version (4.1.2.3): diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index f44c75e..6a63108 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -2265,7 +2265,13 @@ void ONMainWindow::slotConfig() #endif /* defined (Q_OS_WIN) || defined (Q_OS_DARWIN) */ if ( passForm->isVisible() && !embedMode ) + { + if (brokerMode && (!config.brokerAuthenticated)) + { + return; + } slotClosePass(); + } if ( sessionStatusDlg->isVisible() || embedMode ) { trayIconInit(); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git