mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
fix endless loop when clicking on the canvas w/o backend
This commit is contained in:
parent
5d5642d6ec
commit
be62d335ee
1 changed files with 1 additions and 1 deletions
|
|
@ -3972,7 +3972,7 @@ CursorDrag::start_grab (GdkEvent* event, Gdk::Cursor* c)
|
|||
*/
|
||||
|
||||
s->request_suspend_timecode_transmission ();
|
||||
while (AudioEngine::instance()->connected() && !s->timecode_transmission_suspended ()) {
|
||||
while (AudioEngine::instance()->running() && !s->timecode_transmission_suspended ()) {
|
||||
/* twiddle our thumbs */
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue