aboutsummaryrefslogtreecommitdiff
path: root/src/gtkutils.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-11-13 03:01:16 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-11-13 03:01:16 +0000
commit623ac54bc49ae872b63cc8ae556b00049ebdf187 (patch)
tree2a9005e4cbc96895ae1c72d93ab39cc2b9b50169 /src/gtkutils.c
parent485f2afb6fa7355731467a99711644e8c7dcfd8c (diff)
made widget spacings of some dialogs dpi-aware.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3444 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/gtkutils.c')
-rw-r--r--src/gtkutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkutils.c b/src/gtkutils.c
index ec8cd8a2..8240acc3 100644
--- a/src/gtkutils.c
+++ b/src/gtkutils.c
@@ -213,7 +213,7 @@ void gtkut_stock_button_set_create(GtkWidget **bbox,
*bbox = gtk_hbutton_box_new();
gtk_button_box_set_layout(GTK_BUTTON_BOX(*bbox), GTK_BUTTONBOX_END);
- gtk_box_set_spacing(GTK_BOX(*bbox), 6);
+ gtk_box_set_spacing(GTK_BOX(*bbox), 6 * gtkut_get_dpi_multiplier());
if (button3) {
*button3 = gtk_button_new_from_stock(label3);