[pitivi] Make the ruler update only on scroll stopped
- From: Jean-François Fortin Tam <jfft src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] Make the ruler update only on scroll stopped
- Date: Wed, 24 Apr 2013 18:01:15 +0000 (UTC)
commit 29c7d0b899e7209a2deb030307c99e44e23d5aa9
Author: Mathieu Duponchelle <mathieu duponchelle epitech eu>
Date: Mon Apr 15 22:45:04 2013 +0200
Make the ruler update only on scroll stopped
pitivi/timeline/ruler.py | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/pitivi/timeline/ruler.py b/pitivi/timeline/ruler.py
index 8116251..be407c9 100644
--- a/pitivi/timeline/ruler.py
+++ b/pitivi/timeline/ruler.py
@@ -80,7 +80,6 @@ class ScaleRuler(Gtk.DrawingArea, Zoomable, Loggable):
self.position = 0 # In nanoseconds
self.pressed = False
- self.need_update = True
self.min_frame_spacing = 5.0
self.frame_height = 5.0
self.frame_rate = Gst.Fraction(1 / 1)
@@ -88,15 +87,17 @@ class ScaleRuler(Gtk.DrawingArea, Zoomable, Loggable):
self.connect('draw', self.drawCb)
self.connect('configure-event', self.configureEventCb)
self.callback_id = None
+ self.callback_id_scroll = None
def _hadjValueChangedCb(self, hadj):
self.pixbuf_offset = self.hadj.get_value()
- self.queue_draw()
+ if self.callback_id_scroll is not None:
+ GObject.source_remove(self.callback_id_scroll)
+ self.callback_id_scroll = GObject.timeout_add(100, self._maybeUpdate)
## Zoomable interface override
def _maybeUpdate(self):
- self.need_update = True
self.queue_draw()
self.callback_id = None
return False
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]