[gtk+/wip/baedert/drawing: 206/262] button: Don't care about sizing if no child is set



commit 59c9e33b81138de61d43783096531a3703c0550e
Author: Timm Bäder <mail baedert org>
Date:   Thu May 18 10:09:39 2017 +0200

    button: Don't care about sizing if no child is set
    
    We don't need to care in this case since the default values should
    always be assumed to be 0, and setting a baseline of 0 is just wrong
    when orientation == HORIZONTAL, it should be -1 (or unset).

 gtk/gtkbutton.c |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)
---
diff --git a/gtk/gtkbutton.c b/gtk/gtkbutton.c
index 149de66..5432c49 100644
--- a/gtk/gtkbutton.c
+++ b/gtk/gtkbutton.c
@@ -931,15 +931,6 @@ gtk_button_measure_ (GtkWidget      *widget,
                            minimum, natural,
                            minimum_baseline, natural_baseline);
     }
-  else
-    {
-      *minimum = 0;
-      *natural = 0;
-      if (minimum_baseline)
-        *minimum_baseline = 0;
-      if (natural_baseline)
-        *natural_baseline = 0;
-    }
 }
 
 /**


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]