Tell the user why Insert/Remove Time failed, rather than fail silently.
This commit is contained in:
parent
eb15d37669
commit
881c8eeca8
@ -7588,9 +7588,21 @@ void
|
||||
Editor::do_insert_time ()
|
||||
{
|
||||
if (selection->tracks.empty()) {
|
||||
MessageDialog msg (_("You must first select some tracks to Insert Time."),
|
||||
true, MESSAGE_INFO, BUTTONS_OK, true);
|
||||
msg.set_position (WIN_POS_MOUSE);
|
||||
msg.run ();
|
||||
return;
|
||||
}
|
||||
|
||||
if (Config->get_edit_mode() == Lock) {
|
||||
MessageDialog msg (_("You cannot insert time in Lock Edit mode."),
|
||||
true, MESSAGE_INFO, BUTTONS_OK, true);
|
||||
msg.set_position (WIN_POS_MOUSE);
|
||||
msg.run ();
|
||||
return;
|
||||
}
|
||||
|
||||
InsertRemoveTimeDialog d (*this);
|
||||
int response = d.run ();
|
||||
|
||||
@ -7751,6 +7763,18 @@ void
|
||||
Editor::do_remove_time ()
|
||||
{
|
||||
if (selection->tracks.empty()) {
|
||||
MessageDialog msg (_("You must first select some tracks to Remove Time."),
|
||||
true, MESSAGE_INFO, BUTTONS_OK, true);
|
||||
msg.set_position (WIN_POS_MOUSE);
|
||||
msg.run ();
|
||||
return;
|
||||
}
|
||||
|
||||
if (Config->get_edit_mode() == Lock) {
|
||||
MessageDialog msg (_("You cannot remove time in Lock Edit mode."),
|
||||
true, MESSAGE_INFO, BUTTONS_OK, true);
|
||||
msg.set_position (WIN_POS_MOUSE);
|
||||
msg.run ();
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user