GtkScrolledWindow, part of the GTK+ (GIMP Toolkit), adds scroll bars to its child widget.
Questions tagged [gtkscrolledwindow]
17 questions
0
votes
1 answer
Treeview jumps to top on selecting or editing item
In my GTK3 window I have a Treeview with many items, so I have make it scrollable. I'm using a Scrolledwindow for that:
self.codes = Gtk.Treeview()
codeswindow = Gtk.ScrolledWindow()
codeswindow.add_with_viewport(self.codes)
codeswindow.show()
When…

chrwahl
- 8,675
- 2
- 20
- 30
0
votes
1 answer
Glade and deprecated gtk properties
i've been trying to run a software where i've built the UI by Glade. Glade then transform the UI in an XML file, and then in Python i just load that file.
But i've a problem with (maybe) deprecated properties of gtk objects.
This is what the…

FrancescoN
- 2,146
- 12
- 34
- 45