[pitivi] mainwindow: Make context tabs (2nd child of the 2nd hpane) not resize themselves



commit 6b2e69b1c793656b778e57aebbf88a101b8c4665
Author: Jean-François Fortin Tam <nekohayo gmail com>
Date:   Sun Sep 8 12:20:49 2013 -0400

    mainwindow: Make context tabs (2nd child of the 2nd hpane) not resize themselves
    
    When dragging the pane separator between the viewer and the tabs,
    contextual tabs will now size down only when space is constrained;
    the primary tabs (ex: media library) will resize first instead.

 pitivi/mainwindow.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/pitivi/mainwindow.py b/pitivi/mainwindow.py
index d2d9b35..1b93bd6 100644
--- a/pitivi/mainwindow.py
+++ b/pitivi/mainwindow.py
@@ -422,7 +422,7 @@ class PitiviMainWindow(Gtk.Window, Loggable):
         self.trans_list.show()
 
         self.secondhpaned.pack1(self.main_tabs, resize=True, shrink=False)
-        self.secondhpaned.pack2(self.context_tabs, resize=True, shrink=False)
+        self.secondhpaned.pack2(self.context_tabs, resize=False, shrink=False)
         self.main_tabs.show()
         self.context_tabs.show()
         # Prevent TitleEditor from stealing the tab focus on startup:


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