[pitivi] effects: Clarify the clip effects list drag and drop methods parameters
- From: Thibault Saunier <tsaunier src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] effects: Clarify the clip effects list drag and drop methods parameters
- Date: Wed, 24 Sep 2014 17:07:27 +0000 (UTC)
commit df01294ce99649cb32e6a9d568f3dcb7519abd4d
Author: Alexandru Băluț <alexandru balut gmail com>
Date: Tue May 20 22:48:52 2014 +0200
effects: Clarify the clip effects list drag and drop methods parameters
pitivi/clipproperties.py | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/pitivi/clipproperties.py b/pitivi/clipproperties.py
index f2e911c..15340ce 100644
--- a/pitivi/clipproperties.py
+++ b/pitivi/clipproperties.py
@@ -345,17 +345,17 @@ class EffectProperties(Gtk.Expander, Loggable):
# Which means, it has the corresponding media_type
self.addEffectToClip(clip, bin_desc)
- def _dragDropCb(self, *unused_arguments):
- self.info("An item has been dropped onto the clip properties' effects list")
- self.addEffectToCurrentSelection(self.app.gui.effectlist.getSelectedItems())
+ def _dragMotionCb(self, unused_tree_view, unused_drag_context, unused_x, unused_y, unused_timestamp):
+ self.debug("Something is being dragged in the clip properties' effects list")
+ self.drag_highlight()
- def _dragLeaveCb(self, unused_layout, unused_context, unused_tstamp):
+ def _dragLeaveCb(self, unused_tree_view, unused_drag_context, unused_timestamp):
self.info("The item being dragged has left the clip properties' effects list")
self.drag_unhighlight()
- def _dragMotionCb(self, unused, context, x, y, timestamp):
- self.debug("Something is being dragged in the clip properties' effects list")
- self.drag_highlight()
+ def _dragDropCb(self, unused_tree_view, unused_drag_context, unused_x, unused_y, unused_timestamp):
+ self.info("An item has been dropped onto the clip properties' effects list")
+ self.addEffectToCurrentSelection(self.app.gui.effectlist.getSelectedItems())
def _effectActiveToggleCb(self, cellrenderertoggle, path):
iter = self.storemodel.get_iter(path)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]