Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <quinticent@localhost.localdomain>2007-08-10 17:32:24 (GMT)
committer John (J5) Palmieri <quinticent@localhost.localdomain>2007-08-10 17:32:24 (GMT)
commitd2e4e99226e2074f0d09dc9baeadc2e7f7e31c25 (patch)
tree62d780d010f83c34eee279bf387d03f631b4918f /services
parent9e87ca718c2209a00d322724714c98310a84c3f4 (diff)
hack to make sure vte does not wrap too early in first instance
* vte does not reflow if you add the widget before its container is realized so we hack around this by calling set_size with a high number for width
Diffstat (limited to 'services')
-rw-r--r--services/console/interface/terminal/terminal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/console/interface/terminal/terminal.py b/services/console/interface/terminal/terminal.py
index 5eebfb3..4aba858 100644
--- a/services/console/interface/terminal/terminal.py
+++ b/services/console/interface/terminal/terminal.py
@@ -32,7 +32,7 @@ class Terminal(gtk.HBox):
self._vte = vte.Terminal()
self._configure_vte()
- self._vte.set_size(30, 5)
+ self._vte.set_size(100, 5)
self._vte.set_size_request(200, 450)
self._vte.show()
self.pack_start(self._vte)