[Commits] [SCM] claws branch, master, updated. 3.9.2-91-g65c117e
claws at claws-mail.org
claws at claws-mail.org
Wed Oct 2 13:24:59 CEST 2013
The branch master of project "claws" (Claws Mail) has been updated
via 65c117ed6fabe00737c01801b5eda6a04e9d1597 (commit)
from a02f4367c140d6c08a34ae966ef4326ba979f3a0 (commit)
- Log -----------------------------------------------------------------
commit 65c117ed6fabe00737c01801b5eda6a04e9d1597
Author: Paul <paul at claws-mail.org>
Date: Wed Oct 2 12:24:52 2013 +0100
fix bug 2940, 'Extended search dialog too small for content in polish l10n'
diff --git a/src/prefs_matcher.c b/src/prefs_matcher.c
index e0d2580..27a2985 100644
--- a/src/prefs_matcher.c
+++ b/src/prefs_matcher.c
@@ -734,10 +734,14 @@ static void prefs_matcher_create(void)
hbox = gtk_hbox_new(FALSE, HSPACING_NARROW);
gtk_size_group_add_widget(size_group, hbox);
- PACK_CHECK_BUTTON(hbox, case_checkbtn, _("Case sensitive"));
+
+ vbox = gtk_vbox_new(FALSE, VSPACING_NARROW);
+ PACK_CHECK_BUTTON(vbox, case_checkbtn, _("Case sensitive"));
#ifndef G_OS_WIN32
- PACK_CHECK_BUTTON(hbox, regexp_checkbtn, _("Use regexp"));
+ PACK_CHECK_BUTTON(vbox, regexp_checkbtn, _("Use regexp"));
#endif
+ gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 0);
+
gtk_box_pack_end(GTK_BOX(hbox), gtk_label_new(""), TRUE, TRUE, 0);
gtk_table_attach(GTK_TABLE(table), hbox, 2, 3, 2, 3,
GTK_FILL, GTK_SHRINK, 4, 0);
-----------------------------------------------------------------------
Summary of changes:
src/prefs_matcher.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list