diff options
| author | Tannin <devnull@localhost> | 2015-03-27 16:31:26 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2015-03-27 16:31:26 +0100 |
| commit | 73eea93abb1fdbd1b2fef494e5bd10a5c8889b84 (patch) | |
| tree | e2cd1c2de5a0dad7dd4e08cef019005156e68daf | |
| parent | 07b8896f92568083870a5ad61f83e3cb2e4e97ff (diff) | |
bugfix: "edit executables" dialog didn't actually save a modified executable when
confirming the save-on-close dialog
| -rw-r--r-- | src/editexecutablesdialog.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/editexecutablesdialog.cpp b/src/editexecutablesdialog.cpp index da207f93..974020d0 100644 --- a/src/editexecutablesdialog.cpp +++ b/src/editexecutablesdialog.cpp @@ -241,6 +241,9 @@ void EditExecutablesDialog::on_closeButton_clicked() return; } else if (res == QMessageBox::Yes) { saveExecutable(); + // the executable list returned to callers is generated from the user data in the widgets, + // NOT the list we just saved + refreshExecutablesWidget(); } } this->accept(); |
