[pitivi] ui.timeline.py: prevent timeline controlls from claiming too much height
- From: Edward Hervey <edwardrv src gnome org>
- To: svn-commits-list gnome org
- Subject: [pitivi] ui.timeline.py: prevent timeline controlls from claiming too much height
- Date: Fri, 24 Jul 2009 09:18:43 +0000 (UTC)
commit ca8d2243b9087d6b336f3ba440f0e8d7005ec65b
Author: Brandon Lewis <brandon_lewis berkeley edu>
Date: Thu Jul 23 11:20:28 2009 -0700
ui.timeline.py: prevent timeline controlls from claiming too much height
by requesting exactly one pixel of height
closes bug 589513
pitivi/ui/timeline.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/pitivi/ui/timeline.py b/pitivi/ui/timeline.py
index 0a7979e..0f8a137 100644
--- a/pitivi/ui/timeline.py
+++ b/pitivi/ui/timeline.py
@@ -146,6 +146,7 @@ class Timeline(gtk.Table, Loggable, Zoomable):
controlwindow = gtk.ScrolledWindow(None, self.vadj)
controlwindow.set_policy(gtk.POLICY_NEVER, gtk.POLICY_NEVER)
controlwindow.add_with_viewport(self._controls)
+ controlwindow.set_size_request(-1, 1)
self.attach(controlwindow, 0, 1, 1, 2, xoptions=0)
# timeline ruler
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]