aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_actions.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2015-12-08 10:14:36 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2015-12-08 10:14:36 +0000
commitc54d50c898f66de389b6dc9a86f124a42452ae21 (patch)
treee1e972b3c2c9cf85c9257cd058a3a12093e8ddb9 /src/prefs_actions.c
parentc69c24f71c8a2355fd19e26b2f00e80b36f04d1a (diff)
made sizes of more dialogs DPI-aware.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3500 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_actions.c')
-rw-r--r--src/prefs_actions.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/prefs_actions.c b/src/prefs_actions.c
index 1d79f3c0..47184931 100644
--- a/src/prefs_actions.c
+++ b/src/prefs_actions.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2005 Hiroyuki Yamamoto & The Sylpheed Claws Team
+ * Copyright (C) 1999-2015 Hiroyuki Yamamoto & The Sylpheed Claws Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -281,7 +281,8 @@ static void prefs_actions_create(MainWindow *mainwin)
cond_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
gtk_widget_show(cond_scrolledwin);
- gtk_widget_set_size_request(cond_scrolledwin, -1, 150);
+ gtk_widget_set_size_request(cond_scrolledwin, -1,
+ 150 * gtkut_get_dpi_multiplier());
gtk_box_pack_start(GTK_BOX(cond_hbox), cond_scrolledwin,
TRUE, TRUE, 0);
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW (cond_scrolledwin),