Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Edit/HitInterface.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2013-01-15 13:01:18 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2013-01-18 19:59:58 (GMT)
commit9ba0c8dc8ecb965894cdc9d12dfb9b83e8992fa8 (patch)
tree9ef8dac7c07cae2e8be5910551b00c4cb107a6cf /Edit/HitInterface.py
parentefe75bcce5a94fa0f2c8accb05d48333103d4290 (diff)
Ported more TamTamEdit code to Gtk3
Signed-off-by: Aaron Gordon <aaronsgordon@yahoo.com>
Diffstat (limited to 'Edit/HitInterface.py')
-rw-r--r--Edit/HitInterface.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Edit/HitInterface.py b/Edit/HitInterface.py
index 2c3572d..84e0356 100644
--- a/Edit/HitInterface.py
+++ b/Edit/HitInterface.py
@@ -182,7 +182,7 @@ class HitInterface( NoteInterface ):
#=======================================================
# Draw
- def draw( self, surface, gc, startX, stopX ):
+ def draw( self, surface, startX, stopX ):
if stopX < self.imgX: return False # we don't need to draw and no one after us will draw
if startX > self.imgX + self.imgWidth: return True # we don't need to draw, but maybe a later note does
cxt = cairo.Context(surface)