Browse Source

Don't lose track of timeline focus when window loses focus.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
8545b82b49
2 changed files with 3 additions and 4 deletions
  1. +3
    -0
      Timeline/Sequence.C
  2. +0
    -4
      Timeline/Timeline.C

+ 3
- 0
Timeline/Sequence.C View File

@@ -338,6 +338,9 @@ Sequence::handle ( int m )
/* garbage from overlay window */
return 0;
case FL_FOCUS:
Fl_Widget::handle( m );
redraw();
return 1;
case FL_UNFOCUS:
Fl_Widget::handle( m );
redraw();


+ 0
- 4
Timeline/Timeline.C View File

@@ -1121,10 +1121,6 @@ Timeline::handle ( int m )

switch ( m )
{
case FL_FOCUS:
case FL_UNFOCUS:
// redraw();
return 1;
case FL_ENTER:
return 1;
case FL_LEAVE:


Loading…
Cancel
Save