summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2018-07-20 14:38:59 +0200
committerSimon Rettberg2018-07-20 14:38:59 +0200
commit3776d098c8581299724adf70aae3a718e4b633ca (patch)
tree6e796963699af48237a477a22c0cdf3c9ddb6a92
parent[client] Remove debug spam (diff)
downloadpvs2-3776d098c8581299724adf70aae3a718e4b633ca.tar.gz
pvs2-3776d098c8581299724adf70aae3a718e4b633ca.tar.xz
pvs2-3776d098c8581299724adf70aae3a718e4b633ca.zip
[server] Fix: Checking for Ok on a Yes/No question ...
-rw-r--r--src/server/mainwindow/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/mainwindow/mainwindow.cpp b/src/server/mainwindow/mainwindow.cpp
index 6fc80f3..523c61c 100644
--- a/src/server/mainwindow/mainwindow.cpp
+++ b/src/server/mainwindow/mainwindow.cpp
@@ -677,7 +677,7 @@ void MainWindow::onSessionNameUpdate()
tr("Question"), tr("Do you want to delete and disconnect any clients\n"
"not belonging to the current room layout?"),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
- if (ret != QMessageBox::Ok)
+ if (ret != QMessageBox::Yes)
return;
// Stop all projections and clear all clients, which were connected to old sessionName.
reset();