From cbafac8ea9fedcee9eab8940d85329d0f8bb12da Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 9 Feb 2010 23:32:54 +0000 Subject: [PATCH] - Make it impossible to open more than one options dialog --- src/GUI.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index 2c11d8dd6..bdc1f7923 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -922,8 +922,10 @@ void GUI::createTrayIcon() { // Display Program Options void GUI::on_actionOptions_triggered() { - options = new options_imp(this); - connect(options, SIGNAL(status_changed()), this, SLOT(optionsSaved())); + if(!options) { + options = new options_imp(this); + connect(options, SIGNAL(status_changed()), this, SLOT(optionsSaved())); + } } /*****************************************************