From 281607550b3465434c9a3eec35492d35f48bf87d Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Tue, 6 May 2008 18:38:55 -0500 Subject: [PATCH] Oops. Actually ignore modifiers for timeline keys. --- Timeline/Timeline.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timeline/Timeline.C b/Timeline/Timeline.C index 1949812..c677b9c 100644 --- a/Timeline/Timeline.C +++ b/Timeline/Timeline.C @@ -819,7 +819,7 @@ Timeline::handle ( int m ) case FL_KEYBOARD: case FL_SHORTCUT: { - if ( Fl::event_state() & ( FL_ALT || FL_CTRL || FL_SHIFT ) ) + if ( Fl::event_state() & ( FL_ALT | FL_CTRL | FL_SHIFT ) ) /* we don't want any keys with modifiers... */ return 0;