summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2015-03-27 16:31:26 +0100
committerTannin <devnull@localhost>2015-03-27 16:31:26 +0100
commit73eea93abb1fdbd1b2fef494e5bd10a5c8889b84 (patch)
treee2cd1c2de5a0dad7dd4e08cef019005156e68daf /src
parent07b8896f92568083870a5ad61f83e3cb2e4e97ff (diff)
bugfix: "edit executables" dialog didn't actually save a modified executable when
confirming the save-on-close dialog
Diffstat (limited to 'src')
-rw-r--r--src/editexecutablesdialog.cpp3
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();