Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Jam/JamMain.py
diff options
context:
space:
mode:
Diffstat (limited to 'Jam/JamMain.py')
-rw-r--r--Jam/JamMain.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Jam/JamMain.py b/Jam/JamMain.py
index ec295cb..1246710 100644
--- a/Jam/JamMain.py
+++ b/Jam/JamMain.py
@@ -1071,11 +1071,12 @@ class JamMain(Gtk.EventBox):
height = Block.Loop.HEIGHT
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, width, height)
ctx = cairo.Context(surface)
+ """
ctx.set_source_rgb(*CairoUtil.gdk_color_to_cairo(
self.colors["Bg_Inactive"]))
ctx.rectangle(0, 0, width, height)
ctx.fill()
-
+ """
self._drawNotes(ctx, page.beats, self.noteDB.getNotesByTrack(id, 0),
False)
self.loopImage[id] = surface