2021-02-25 Fred Gleason <fredg@paravelsystems.com>

* Fixed regressions in rdcartslots(1) that caused widgets to fail
	to update properly after reloading slots.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-02-25 13:35:35 -05:00
parent 1f3286ac10
commit 6ee9578318
5 changed files with 14 additions and 14 deletions

View File

@@ -145,13 +145,13 @@ void RDSlotDialog::okData()
edit_options->setHookMode(edit_hook_box->currentIndex());
edit_options->setStopAction((RDSlotOptions::StopAction)edit_stop_action_box->
currentIndex());
done(0);
done(true);
}
void RDSlotDialog::cancelData()
{
done(-1);
done(false);
}