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
Cut down on the number of verticies drawn for fades
tags/non-daw-v1.1.0
Jonathan Moore Liles
17 years ago
parent
af0e75c23c
commit
8e02b99192
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Timeline/Region.C
+ 1
- 1
Timeline/Region.C
View File
@@ -520,7 +520,7 @@ Region::draw ( int X, int Y, int W, int H )
const int width = timeline->ts_to_x( fade.length );
for ( int i = X; i < line_x() + width; i
++
)
for ( int i = X; i < line_x() + width; i
+= 3
)
{
const int x = i;
Write
Preview
Loading…
Cancel
Save