Reinstate normalize action.

This commit is contained in:
Jonathan Moore Liles 2008-02-21 03:51:07 -06:00
parent 28895ca0ea
commit 5118c79c2f
1 changed files with 5 additions and 2 deletions

View File

@ -179,8 +179,11 @@ Region::handle ( int m )
if ( Fl::event_button() == 2 ) if ( Fl::event_button() == 2 )
{ {
// normalize(); if ( Fl::event_state() & FL_CTRL )
_selected = ! _selected; normalize();
else
_selected = ! _selected;
_track->redraw(); _track->redraw();
} }