This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Improve mouse cursor handling.
tags/non-daw-v1.1.0
Jonathan Moore Liles
17 years ago
parent
c97a15047c
commit
01a1e5846c
2 changed files
with
7 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
Audio_Track.C
+2
-0
Region.C
+ 5
- 0
Audio_Track.C
View File
@@ -79,8 +79,13 @@ Audio_Track::handle ( int m )
printf( "pasted file \"%s\"\n", file );
fl_cursor( FL_CURSOR_WAIT );
Fl::check();
Audio_File *c = Audio_File::from_file( file );
fl_cursor( FL_CURSOR_DEFAULT );
if ( ! c )
{
free( file );
+ 2
- 0
Region.C
View File
@@ -225,10 +225,12 @@ Region::handle ( int m )
{
case FL_ENTER:
_current = true;
Track_Widget::handle( m );
redraw();
break;
case FL_LEAVE:
_current = false;
Track_Widget::handle( m );
redraw();
break;
case FL_PUSH:
Write
Preview
Loading…
Cancel
Save