mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Undo: only show warning message if dives were actually edited
The multiple-dives-edited message was shown even if the value was not changed. Notably, when tab-flipping through the dive fields. Therefore, changed the execute_edit() function to return zero when no command was executed. For this, return a boolean from the execute() function indicating whether the command was really executed or trashed. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
944a9aed54
commit
f51e402e04
3 changed files with 10 additions and 8 deletions
|
@ -38,12 +38,15 @@ QAction *redoAction(QObject *parent)
|
|||
return undoStack.createRedoAction(parent, QCoreApplication::translate("Command", "&Redo"));
|
||||
}
|
||||
|
||||
void execute(Base *cmd)
|
||||
bool execute(Base *cmd)
|
||||
{
|
||||
if (cmd->workToBeDone())
|
||||
if (cmd->workToBeDone()) {
|
||||
undoStack.push(cmd);
|
||||
else
|
||||
return true;
|
||||
} else {
|
||||
delete cmd;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Command
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue