mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
fix compiler warning from missing default statement in switch
This commit is contained in:
parent
738336fbd5
commit
b4438942ca
1 changed files with 5 additions and 0 deletions
|
|
@ -900,6 +900,11 @@ GtkCanvas::on_leave_notify_event (GdkEventCrossing* ev)
|
|||
stop_tooltip_timeout ();
|
||||
hide_tooltip ();
|
||||
break;
|
||||
default:
|
||||
/* we don't care about any other kind
|
||||
of leave event (notably GDK_NOTIFY_INFERIOR)
|
||||
*/
|
||||
break;
|
||||
}
|
||||
_new_current_item = 0;
|
||||
deliver_enter_leave (Duple (ev->x, ev->y), ev->state);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue