** Changed in: gtk+2.0 (Ubuntu)
Status: New => Invalid
--
the gtk.expander also affects the width of the window
https://bugs.launchpad.net/bugs/59225
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in ubuntu.
--
desktop-b
There's been no activity on this bug in over a year. I'm not sure it's
really a bug, but if it is, it's not something where Ubuntu should
diverge from upstream. Please file the bug upstream to seek upstream
developer input in the matter.
--
the gtk.expander also affects the width of the window
what would you expect? having the windows forced to the size of the
expander content? or having the window shrinking when clicking again on
the widget?
--
the gtk.expander also affects the width of the window
https://bugs.launchpad.net/bugs/59225
You received this bug notification because you are
#!/usr/bin/env python
import gtk
win = gtk.Window()
ex = gtk.Expander()
vbox = gtk.VBox()
win.add(vbox)
label1 = gtk.Label("short")
label2 = gtk.Label("very very long")
vbox.add(label1)
vbox.add(ex)
ex.add(label2)
win.show_all()
gtk.main()
** Changed in: gtk+2.0 (Ubuntu)
Sourcepackagename: syna
** Summary changed:
- Clicking "Details" in "Applying Changes" window resizes it
+ the gtk.expander also affects the width of the window
** Description changed:
- On clicking "Details" in the "Applying Changes" window makes it a bit wider.
Clicking it again sets it to initial size.
- I dont thi