mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 20:29:35 +01:00
don't call end_edit() when losing focus from an audio clock if we were not editing
git-svn-id: svn://localhost/ardour2/branches/3.0@10677 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
149085ba16
commit
133bfd4b4f
1 changed files with 3 additions and 1 deletions
|
|
@ -1225,7 +1225,9 @@ AudioClock::on_focus_out_event (GdkEventFocus* ev)
|
|||
{
|
||||
bool ret = CairoWidget::on_focus_out_event (ev);
|
||||
|
||||
end_edit (false);
|
||||
if (editing) {
|
||||
end_edit (false);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue