commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] [gnuradio] 15/24: grc: tabbed probs: fix initial error


From: git
Subject: [Commit-gnuradio] [gnuradio] 15/24: grc: tabbed probs: fix initial error box height
Date: Tue, 18 Mar 2014 17:51:41 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

trondeau pushed a commit to branch master
in repository gnuradio.

commit 1e5583e847951dc45fa6db88d5f00fa70f6c745c
Author: Sebastian Koslowski <address@hidden>
Date:   Mon Mar 17 15:17:51 2014 +0100

    grc: tabbed probs: fix initial error box height
---
 grc/gui/PropsDialog.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grc/gui/PropsDialog.py b/grc/gui/PropsDialog.py
index 8a7a8b1..05e997b 100644
--- a/grc/gui/PropsDialog.py
+++ b/grc/gui/PropsDialog.py
@@ -103,8 +103,8 @@ class PropsDialog(gtk.Dialog):
         self._error_box = gtk.ScrolledWindow()
         self._error_box.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
         self._error_box.add_with_viewport(self._error_messages_text_display)
-        self._error_box.set_size_request(-1, 40)
         vpaned.pack2(self._error_box)
+        vpaned.set_position(int(0.65 * MIN_DIALOG_HEIGHT))
 
         # Connect events
         self.connect('key-press-event', self._handle_key_press)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]