aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_common_dialog.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-12-11 05:54:48 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-12-11 05:54:48 +0000
commit62cac3dcf9bddaa348f8c0fbebc4b929a16ca221 (patch)
treecb742e5a7afa760478aa74021501211a5a76c6ab /src/prefs_common_dialog.c
parenta9afa2760a048385d418042c1c457d72d8a2872a (diff)
don't make GtkTextView auto-expanded in prefs dialogs.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1411 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_common_dialog.c')
-rw-r--r--src/prefs_common_dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prefs_common_dialog.c b/src/prefs_common_dialog.c
index 06435063..b8c27d32 100644
--- a/src/prefs_common_dialog.c
+++ b/src/prefs_common_dialog.c
@@ -1236,7 +1236,7 @@ static GtkWidget *prefs_quote_create(void)
gtk_widget_show (text_quotefmt);
gtk_container_add(GTK_CONTAINER(scrolledwin_quotefmt), text_quotefmt);
gtk_text_view_set_editable (GTK_TEXT_VIEW (text_quotefmt), TRUE);
- gtk_widget_set_size_request(text_quotefmt, -1, 60);
+ gtk_widget_set_size_request(text_quotefmt, DEFAULT_ENTRY_WIDTH, 60);
/* forward */
@@ -1280,7 +1280,7 @@ static GtkWidget *prefs_quote_create(void)
gtk_container_add(GTK_CONTAINER(scrolledwin_quotefmt),
text_fw_quotefmt);
gtk_text_view_set_editable (GTK_TEXT_VIEW (text_fw_quotefmt), TRUE);
- gtk_widget_set_size_request (text_fw_quotefmt, -1, 60);
+ gtk_widget_set_size_request (text_fw_quotefmt, DEFAULT_ENTRY_WIDTH, 60);
hbox1 = gtk_hbox_new (FALSE, 32);
gtk_widget_show (hbox1);