X-Git-Url: https://git.sthu.org/?p=pygdb.git;a=blobdiff_plain;f=ClientIOTerminal.py;h=2c1162f5c1d8bf0e75871546468423e86721f4ca;hp=6cb17539dfe3c9faafee3c113d073a88b736deb5;hb=HEAD;hpb=8273891ed3f8f597e84edff8842515b1a14e06d2 diff --git a/ClientIOTerminal.py b/ClientIOTerminal.py index 6cb1753..2c1162f 100644 --- a/ClientIOTerminal.py +++ b/ClientIOTerminal.py @@ -5,6 +5,7 @@ __author__ = "shuber" import gtk +import pango import vte @@ -23,6 +24,7 @@ class ClientIOWindow (gtk.Window): self.terminal = ClientIOTerminal(pty_master) self.add(self.terminal) + #Show the window self.show_all() @@ -34,3 +36,7 @@ class ClientIOTerminal(vte.Terminal): vte.Terminal.__init__(self) self.set_pty(pty_master) + fontdesc = pango.FontDescription("monospace 9") + self.set_font(fontdesc) + +