[pitivi] Move the media and effect library toolbars to the top for consistency



commit 454e65b534c3a4dd94af66a007734789f8aeeec6
Author: Jean-FranÃois Fortin Tam <nekohayo gmail com>
Date:   Tue Sep 4 11:12:59 2012 -0400

    Move the media and effect library toolbars to the top for consistency

 pitivi/effects.py      |    2 +-
 pitivi/medialibrary.py |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pitivi/effects.py b/pitivi/effects.py
index 264653d..bbfad0a 100644
--- a/pitivi/effects.py
+++ b/pitivi/effects.py
@@ -410,8 +410,8 @@ class EffectListWidget(Gtk.VBox, Loggable):
         scrollwin.props.vscrollbar_policy = Gtk.PolicyType.AUTOMATIC
         scrollwin.add(self.view)
 
+        self.pack_start(toolbar, expand=False)
         self.pack_start(scrollwin, True, True, 0)
-        self.pack_end(toolbar, expand=False)
 
         # Delay the loading of the available effects so the application
         # starts faster.
diff --git a/pitivi/medialibrary.py b/pitivi/medialibrary.py
index 1f73fee..4efbf27 100644
--- a/pitivi/medialibrary.py
+++ b/pitivi/medialibrary.py
@@ -428,12 +428,12 @@ class MediaLibraryWidget(Gtk.VBox, Loggable):
             self._listview_button.set_active(False)
 
         # add all child widgets
+        self.pack_start(toolbar, expand=False)
         self.pack_start(self._welcome_infobar, False, False, 0)
         self.pack_start(self._import_warning_infobar, False, False, 0)
         self.pack_start(self.iconview_scrollwin, True, True, 0)
         self.pack_start(self.treeview_scrollwin, True, True, 0)
         self.pack_start(self._progressbar, False, True, 0)
-        self.pack_start(toolbar, expand=False)
 
         # display the help text
         self.clip_view = self.app.settings.lastClipView



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]