Skip to content

Commit

Permalink
Fixed a bug related to reset_settings (rizinorg#1349)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vane11ope authored and xarkes committed Mar 21, 2019
1 parent 1cfc5e8 commit 7fd815b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1026,8 +1026,8 @@ void MainWindow::on_actionReset_settings_triggered()
tr("Do you really want to clear all settings?"),
QMessageBox::Ok | QMessageBox::Cancel);
if (ret == QMessageBox::Ok) {
on_actionDefault_triggered();
Config()->resetAll();
on_actionDefault_triggered();
}
}

Expand Down

0 comments on commit 7fd815b

Please sign in to comment.