[pitivi: 15/19] Fix for bug 635124 - Effects configurations list shuffled
- From: Edward Hervey <edwardrv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi: 15/19] Fix for bug 635124 - Effects configurations list shuffled
- Date: Wed, 24 Nov 2010 10:31:11 +0000 (UTC)
commit a624cbdda543f85bb33627ddb03be35022f0be7b
Author: Thibault Saunier <tsaunier gnome org>
Date: Tue Nov 23 11:08:58 2010 +0000
Fix for bug 635124 - Effects configurations list shuffled
pitivi/timeline/timeline.py | 2 +-
pitivi/ui/clipproperties.py | 1 +
pitivi/ui/effectlist.py | 1 +
3 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/pitivi/timeline/timeline.py b/pitivi/timeline/timeline.py
index 7009038..f7a1c1d 100644
--- a/pitivi/timeline/timeline.py
+++ b/pitivi/timeline/timeline.py
@@ -541,7 +541,7 @@ class Selection(Signallable):
if isinstance(track, TrackEffect):
track_effects.append(track)
- return set(track_effects)
+ return track_effects
def __len__(self):
return len(self.selected)
diff --git a/pitivi/ui/clipproperties.py b/pitivi/ui/clipproperties.py
index f669e6e..8c4b312 100644
--- a/pitivi/ui/clipproperties.py
+++ b/pitivi/ui/clipproperties.py
@@ -200,6 +200,7 @@ class EffectProperties(gtk.HBox):
self.treeview.connect("drag-motion", self._dragMotionCb)
self.treeview.connect("query-tooltip", self._treeViewQueryTooltipCb)
self._vcontent.connect("notify", self._vcontentNotifyCb)
+ self.treeview.set_headers_clickable(False)
#self.connect('notify::expanded', self._expandedCb)
diff --git a/pitivi/ui/effectlist.py b/pitivi/ui/effectlist.py
index 302ea60..c68242d 100644
--- a/pitivi/ui/effectlist.py
+++ b/pitivi/ui/effectlist.py
@@ -105,6 +105,7 @@ class EffectList(gtk.VBox, Loggable):
self.treeview_scrollwin.add(self.treeview)
self.treeview.set_property("rules_hint", True)
self.treeview.set_property("has_tooltip", True)
+ self.treeview.set_property("headers-clickable", False)
tsel = self.treeview.get_selection()
tsel.set_mode(gtk.SELECTION_SINGLE)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]