summaryrefslogtreecommitdiff
path: root/gtk/gtkarrow.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-04-28 22:11:55 +0200
committerBenjamin Otte <otte@redhat.com>2011-04-28 22:21:45 +0200
commit1c46e04f30e8b496ac0cc3ad830b4824e54c1e94 (patch)
tree30c1123004ba3580667dda4c2d2f17c07a1553af /gtk/gtkarrow.c
parent5b1ca9dfa88f6f5e925a2b111928f987a31998e1 (diff)
downloadgtk+-1c46e04f30e8b496ac0cc3ad830b4824e54c1e94.tar.gz
arrow: Make minimum size 5px, as opposed to the 15 it was before
Number chosen by staring out the window and counting visible stars. This is necessary so that path bars don't underallocate the arrow widget they use.
Diffstat (limited to 'gtk/gtkarrow.c')
-rw-r--r--gtk/gtkarrow.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/gtk/gtkarrow.c b/gtk/gtkarrow.c
index 9d46d69bf9..4da38722e4 100644
--- a/gtk/gtkarrow.c
+++ b/gtk/gtkarrow.c
@@ -52,7 +52,8 @@
#include "gtkprivate.h"
#include "gtkintl.h"
-#define MIN_ARROW_SIZE 15
+#define MINIMUM_ARROW_SIZE 5
+#define NATURAL_ARROW_SIZE 15
struct _GtkArrowPrivate
{
@@ -208,10 +209,10 @@ gtk_arrow_get_preferred_width (GtkWidget *widget,
gtk_misc_get_padding (GTK_MISC (widget), &xpad, NULL);
if (minimum_size)
- *minimum_size = MIN_ARROW_SIZE + xpad * 2;
+ *minimum_size = MINIMUM_ARROW_SIZE + xpad * 2;
if (natural_size)
- *natural_size = MIN_ARROW_SIZE + xpad * 2;
+ *natural_size = NATURAL_ARROW_SIZE + xpad * 2;
}
static void
@@ -224,10 +225,10 @@ gtk_arrow_get_preferred_height (GtkWidget *widget,
gtk_misc_get_padding (GTK_MISC (widget), NULL, &ypad);
if (minimum_size)
- *minimum_size = MIN_ARROW_SIZE + ypad * 2;
+ *minimum_size = MINIMUM_ARROW_SIZE + ypad * 2;
if (natural_size)
- *natural_size = MIN_ARROW_SIZE + ypad * 2;
+ *natural_size = NATURAL_ARROW_SIZE + ypad * 2;
}