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
Draw selected control points in selection color.
tags/non-daw-v1.1.0
Jonathan Moore Liles
17 years ago
parent
458bb7cc05
commit
5293eae6d9
2 changed files
with
1 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-5
Timeline/Control_Point.H
+1
-1
Timeline/Sequence_Widget.H
+ 0
- 5
Timeline/Control_Point.H
View File
@@ -157,9 +157,4 @@ public:
int y ( void ) const { return parent()->y() + ((float)parent()->h() * _y); }
int h ( void ) const { return 6; }
void
draw ( int X, int Y, int W, int H )
{
}
};
+ 1
- 1
Timeline/Sequence_Widget.H
View File
@@ -339,7 +339,7 @@ public:
virtual void
draw_box ( void )
{
fl_draw_box( box(), x(), y(), w(), h(), _box_color );
fl_draw_box( box(), x(), y(), w(), h(),
selected() ? FL_MAGENTA :
_box_color );
}
virtual void
Write
Preview
Loading…
Cancel
Save