Skip to content

Commit

Permalink
#790 add: require restart for enableNoteTreeCheckBox toggling
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Dec 23, 2023
1 parent df51877 commit e03f39c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## 23.12.4
- the collapse-state for the note tree in the experimental note tree mode is now stored
(for [#790](https://github.com/pbek/QOwnNotes/issues/790), thank you, @discapes)
- toggling the experimental note tree mode in the settings now requires a restart
of the application, to make sure the panels are initialized correctly
(for [#790](https://github.com/pbek/QOwnNotes/issues/790))

## 23.12.3
- the speed of link highlighting in lists starting with 4 spaces or more was improved
Expand Down
1 change: 1 addition & 0 deletions src/dialogs/settingsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ SettingsDialog::SettingsDialog(int page, QWidget *parent)
SLOT(needRestart()));
connect(ui->enableSocketServerCheckBox, SIGNAL(toggled(bool)), this, SLOT(needRestart()));
connect(ui->enableWebApplicationCheckBox, SIGNAL(toggled(bool)), this, SLOT(needRestart()));
connect(ui->enableNoteTreeCheckBox, SIGNAL(toggled(bool)), this, SLOT(needRestart()));
connect(ui->webAppServerUrlLineEdit, SIGNAL(textChanged(QString)), this, SLOT(needRestart()));
connect(ui->webAppTokenLineEdit, SIGNAL(textChanged(QString)), this, SLOT(needRestart()));
// connect(ui->layoutWidget, SIGNAL(settingsStored()),
Expand Down

0 comments on commit e03f39c

Please sign in to comment.