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
This commit is contained in:
John (J5) Palmieri 2007-08-10 13:32:24 -04:00
parent 9e87ca718c
commit d2e4e99226

View File

@ -32,7 +32,7 @@ class Terminal(gtk.HBox):
self._vte = vte.Terminal() self._vte = vte.Terminal()
self._configure_vte() self._configure_vte()
self._vte.set_size(30, 5) self._vte.set_size(100, 5)
self._vte.set_size_request(200, 450) self._vte.set_size_request(200, 450)
self._vte.show() self._vte.show()
self.pack_start(self._vte) self.pack_start(self._vte)