GTK3: 'Layers' dialog too wide (not related to actual content)
Bug #1069181 reported by
su_v
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Inkscape |
Fix Released
|
Undecided
|
Alex Valavanis |
Bug Description
With GTK3 builds, the 'Layers' dialog is far too wide (even if one considers the new layout of the spin buttons, this minimal width doesn't make sense).
Reproduced with Inkscape 0.48+devel 11814 on OS X 10.7.4:
- gtk3/x11 3.4.4, gtkmm 3.4.0, glib 2.32.4, glibmm 2.32.1, cairo 1.12.2
- gtk3/quartz 3.6.1, gtkmm 3.5.13, glib 2.34.1, glibmm 2.33.14, cairo 1.12.2
Related branches
tags: |
added: gtk3 removed: gtk3-regression |
To post a comment you must log in.
This is probably caused by the removal of the set_child_min_width method from Gtk::ButtonBox in GTK+ 3. In ui/dialog/ layers. cpp, we have...
!WITH_GTKMM_3_0 .set_child_ min_width( 16 );
// TODO: This has been removed from Gtkmm 3.0. Check that everything still
// looks OK!
_buttonsRow
#endif
I guess the response to my comment in the code is "no, it doesn't look OK"!