After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 584598 - GtkButtonBox silently ignores gtk_orientable_set_orientation
GtkButtonBox silently ignores gtk_orientable_set_orientation
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Widget: Other
2.17.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
: 561821 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2009-06-02 10:38 UTC by Danielle Madeley
Modified: 2009-06-15 02:01 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
testcase (2.02 KB, text/x-csrc)
2009-06-02 10:41 UTC, Danielle Madeley
  Details
patch (28.20 KB, patch)
2009-06-02 12:05 UTC, Danielle Madeley
needs-work Details | Review
updated patch (30.81 KB, patch)
2009-06-15 01:21 UTC, Danielle Madeley
committed Details | Review

Description Danielle Madeley 2009-06-02 10:38:54 UTC
GtkBox works as expected.
Comment 1 Danielle Madeley 2009-06-02 10:41:44 UTC
Created attachment 135796 [details]
testcase
Comment 2 Danielle Madeley 2009-06-02 11:01:57 UTC
Turns out it's just not implemented. Shouldn't be too hard, just a bit of fiddling.
Comment 3 Christian Persch 2009-06-02 12:01:08 UTC
Bug 561821 seems to have the patch for this.
Comment 5 Danielle Madeley 2009-06-02 12:08:53 UTC
Typically, this arrives just as I finish my patch.

Probably should have checked for dupes a little harder.
Comment 6 Matthias Clasen 2009-06-05 18:50:54 UTC
Patch looks fine to me, as far as functionality is concerned. 

There's some stylistic issues:

+  if (orientation == GTK_ORIENTATION_HORIZONTAL)
+  {
+    return gtk_hbutton_box_get_layout_default ();
+  }
+  else
+  {
+    return gtk_vbutton_box_get_layout_default ();
+  }


no {} around single statements in if/else, ie write

  if (orientation == GTK_ORIENTATION_HORIZONTAL)
    return gtk_hbutton_box_get_layout_default ();
  else
    return gtk_vbutton_box_get_layout_default ();


+  if (nvis_children == 0)
+  {
+    requisition->width = 0;
+    requisition->height = 0;
+  }
+  else
+  {

We use a base indent of 2, like this:

 if (nvis_children == 0)
   {
     requisition->width = 0;
     requisition->height = 0;
   }
 else
   {
 
Comment 8 Matthias Clasen 2009-06-15 01:42:28 UTC
Looks good now, please commit.
Comment 9 Danielle Madeley 2009-06-15 02:00:28 UTC
Done.
Comment 10 Danielle Madeley 2009-06-15 02:01:31 UTC
*** Bug 561821 has been marked as a duplicate of this bug. ***