mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
preferences: connect() dialog page only once
Weirdly, the settingsChanged() signal of the dialog-pages was connected() to the settingsChanged() signal of the dialog every time the settings were accepted. Do it only once in the constructor. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
0fab09a990
commit
712e4680ca
2 changed files with 3 additions and 5 deletions
|
@ -84,6 +84,7 @@ PreferencesDialog::PreferencesDialog()
|
|||
pagesList->addItem(item);
|
||||
pagesStack->addWidget(page);
|
||||
page->refreshSettings();
|
||||
connect(page, &AbstractPreferencesWidget::settingsChanged, &diveListNotifier, &DiveListNotifier::settingsChanged);
|
||||
}
|
||||
|
||||
connect(pagesList, &QListWidget::currentRowChanged,
|
||||
|
@ -116,10 +117,8 @@ void PreferencesDialog::refreshPages()
|
|||
|
||||
void PreferencesDialog::applyRequested(bool closeIt)
|
||||
{
|
||||
Q_FOREACH(AbstractPreferencesWidget *page, pages) {
|
||||
connect(page, &AbstractPreferencesWidget::settingsChanged, &diveListNotifier, &DiveListNotifier::settingsChanged, Qt::UniqueConnection);
|
||||
for (AbstractPreferencesWidget *page: pages)
|
||||
page->syncSettings();
|
||||
}
|
||||
emit diveListNotifier.settingsChanged();
|
||||
if (closeIt)
|
||||
accept();
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
#define PREFERENCES_WIDGET_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "core/pref.h"
|
||||
|
||||
class AbstractPreferencesWidget;
|
||||
class QListWidget;
|
||||
|
@ -14,7 +13,7 @@ class QAbstractButton;
|
|||
class PreferencesDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
public:
|
||||
static PreferencesDialog* instance();
|
||||
static PreferencesDialog *instance();
|
||||
~PreferencesDialog();
|
||||
void refreshPages();
|
||||
void defaultsRequested();
|
||||
|
|
Loading…
Reference in a new issue