summaryrefslogtreecommitdiff
path: root/gtk/gtkdialog.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-04-30 23:23:54 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-04-30 23:23:54 +0000
commit2d372c4053d512c1825f681326f6e4187c399e5a (patch)
treef88f272aef4068e7614f02c68b33584b27eac334 /gtk/gtkdialog.c
parent483f2d520346952ed7f20d632b1a5967549d3a53 (diff)
downloadgtk+-2d372c4053d512c1825f681326f6e4187c399e5a.tar.gz
Add an extra parameter use_text to gtk_paint_label() to deal with
Mon Apr 30 19:18:07 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkstyle.[ch] gtk/gtkaccellabel.c gtk/gtkcellrenderertext.c gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c gtk/gtkprogressbar.c gtk/gtkvruler.c gtk/gtkvscale.c: Add an extra parameter use_text to gtk_paint_label() to deal with style->bg[] vs style->text[]. * gtk/gtkbbox.c gtk/gtkdialog.c: Tweak padding some to deal with GtkWidget::interior_focus = TRUE better. * gtk/gtkbutton.c * gtk/gtkwidget.c (gtk_widget_style_get_valist): Remove G_VALUE_NO_COPY_CONTENTS, to correspond with the recent change that had to be made with g_object_get.
Diffstat (limited to 'gtk/gtkdialog.c')
-rw-r--r--gtk/gtkdialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c
index 324f781d15..c0f0ea1181 100644
--- a/gtk/gtkdialog.c
+++ b/gtk/gtkdialog.c
@@ -146,7 +146,7 @@ gtk_dialog_class_init (GtkDialogClass *class)
_("Spacing between buttons"),
0,
G_MAXINT,
- 1,
+ 10,
G_PARAM_READABLE));
gtk_widget_class_install_style_property (widget_class,
@@ -155,7 +155,7 @@ gtk_dialog_class_init (GtkDialogClass *class)
_("Width of border around the button area at the bottom of the dialog"),
0,
G_MAXINT,
- 0,
+ 5,
G_PARAM_READABLE));
}