Browse Source

prevent window resizing by including the textview in a scrolled window

master
ThomasV 13 years ago
parent
commit
d929c4d2dd
  1. 4
      lib/gui.py

4
lib/gui.py

@ -841,7 +841,9 @@ class ElectrumWindow:
tv.set_editable(False)
tv.set_cursor_visible(False)
tv.modify_font(pango.FontDescription(MONOSPACE_FONT))
page.pack_start(tv)
scroll = gtk.ScrolledWindow()
scroll.add(tv)
page.pack_start(scroll)
self.info = tv.get_buffer()
self.add_tab(page, 'Wall')

Loading…
Cancel
Save