Extra space after textview (cross-posted from gtk-app-devel-list)

2018-10-25 Thread Matthew A. Postiff via gtk-list
Hi, I have a scrolledwindow+vbox with multiple textviews one after the other strung together. Built against gtk2, things appear fine. I'm trying to upgrade to gtk3, and have a problem. In GTK3, extra blank space appears after each textview when it is initially created. As

Re: Extra space after textview (cross-posted from gtk-app-devel-list)

2018-10-25 Thread Phil Clayton
Doing a single show_all after the widget hierarchy is in place, as shown below, seems to fix this. I would guess this is due to changes in geometry management between GTK+ 2 and 3. -- #!/usr/bin/env python

Re: Extra space after textview (cross-posted from gtk-app-devel-list)

2018-10-25 Thread Matthew A. Postiff via gtk-list
Phil, thank you very much. Three things in reply. 1. UNcomment the first win.show_all(), it messes up with the phantom space. 2. Change the vbox to grid, and COMMENT the first win.show_all(), nothing at all shows in the window. UNcomment that first line, and lik