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:
parent
9e87ca718c
commit
d2e4e99226
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user