[pitivi/ges] timeline: Do not disable update where not necessary
- From: Jean-FranÃois Fortin Tam <jfft src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi/ges] timeline: Do not disable update where not necessary
- Date: Fri, 18 May 2012 14:32:00 +0000 (UTC)
commit dc82fa271c654a304063ce9ef7571f6e444cceb8
Author: Thibault Saunier <thibault saunier collabora com>
Date: Wed May 9 15:57:19 2012 -0400
timeline: Do not disable update where not necessary
pitivi/timeline/timeline.py | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/pitivi/timeline/timeline.py b/pitivi/timeline/timeline.py
index 31ccd24..fa99918 100644
--- a/pitivi/timeline/timeline.py
+++ b/pitivi/timeline/timeline.py
@@ -817,7 +817,6 @@ class Timeline(gtk.Table, Loggable, Zoomable):
# We want to show the clips being dragged to the timeline (not effects)
elif context.targets not in DND_EFFECT_LIST:
if not self._temp_objects and not self._creating_tckobjs_sigid:
- self.timeline.enable_update(False)
self._create_temp_source(x, y)
# Let some time for TrackObject-s to be created
@@ -860,8 +859,6 @@ class Timeline(gtk.Table, Loggable, Zoomable):
self._drag_started = False
self._factories = []
if context.targets not in DND_EFFECT_LIST:
- if self._move_context is not None:
- self._move_context.finish()
self._canvas.drag_unhighlight()
self.debug("Need to cleanup %d objects" % len(self._temp_objects))
for obj in self._temp_objects:
@@ -869,7 +866,6 @@ class Timeline(gtk.Table, Loggable, Zoomable):
self.log("Cleaning temporary %s on %s" % (obj, layer))
layer.remove_object(obj)
self._temp_objects = []
- self.timeline.enable_update(True)
self.debug("Drag cleanup ended")
self._canvas.handler_unblock_by_func(self._dragMotionCb)
return False
@@ -892,7 +888,6 @@ class Timeline(gtk.Table, Loggable, Zoomable):
self._temp_objects = []
self._factories = []
context.drop_finish(True, timestamp)
- self.timeline.enable_update(True)
else:
if self.app.current.timeline.props.duration == 0:
return False
@@ -931,7 +926,6 @@ class Timeline(gtk.Table, Loggable, Zoomable):
def _dragDataReceivedCb(self, unused_layout, context, x, y,
selection, targetType, timestamp):
- self.app.projectManager.current.timeline.enable_update(False)
self.log("targetType:%d, selection.data:%s" % (targetType, selection.data))
self.selection_data = selection.data
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]