[pitivi] Make the HPaned resize by default in the main window.
- From: Edward Hervey <edwardrv src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [pitivi] Make the HPaned resize by default in the main window.
- Date: Mon, 10 Aug 2009 17:53:25 +0000 (UTC)
commit bf5f555dff38dfa31645665ee30a4da9fc231681
Author: Alessandro Decina <alessandro d gmail com>
Date: Mon Aug 10 15:01:39 2009 +0200
Make the HPaned resize by default in the main window.
Make it so that when you maximize the window, extra space is allocated for
the sourcelist and the viewer.
pitivi/ui/mainwindow.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pitivi/ui/mainwindow.py b/pitivi/ui/mainwindow.py
index 08b811b..26aae35 100644
--- a/pitivi/ui/mainwindow.py
+++ b/pitivi/ui/mainwindow.py
@@ -372,9 +372,9 @@ class PitiviMainWindow(gtk.Window, Loggable):
self.timeline = Timeline(instance, self.uimanager)
self.timeline.project = self.project
- vpaned.pack2(self.timeline, resize=True, shrink=False)
+ vpaned.pack2(self.timeline, resize=False, shrink=False)
hpaned = gtk.HPaned()
- vpaned.pack1(hpaned, resize=False, shrink=True)
+ vpaned.pack1(hpaned, resize=True, shrink=False)
self.projecttabs = ProjectTabs(instance, self.uimanager)
self._connectToSourceList()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]