From: Colin Leroy Date: Thu, 22 Jun 2006 17:42:45 +0000 (+0000) Subject: 2006-06-22 [colin] 2.3.1cvs15 X-Git-Tag: rel_2_4_0~88 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=08bca7a21b67e7a95ee4fad1b1749e3edd9c71ab 2006-06-22 [colin] 2.3.1cvs15 * src/prefs_customheader.c Don't use filters in custom headers' file selector. Remember, extensions mean nothing :) --- diff --git a/ChangeLog b/ChangeLog index de2eb99de..95f19f24a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-06-22 [colin] 2.3.1cvs15 + + * src/prefs_customheader.c + Don't use filters in custom headers' file + selector. Remember, extensions mean nothing :) + 2006-06-22 [paul] 2.3.1cvs14 * configure.ac diff --git a/PATCHSETS b/PATCHSETS index a6eba46cc..6051363a0 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1615,3 +1615,4 @@ ( cvs diff -u -r 1.36.2.66 -r 1.36.2.67 src/common/utils.c; ) > 2.3.1cvs12.patchset ( cvs diff -u -r 1.274.2.118 -r 1.274.2.119 src/mainwindow.c; ) > 2.3.1cvs13.patchset ( cvs diff -u -r 1.654.2.1660 -r 1.654.2.1661 configure.ac; ) > 2.3.1cvs14.patchset +( cvs diff -u -r 1.16.2.21 -r 1.16.2.22 src/prefs_customheader.c; ) > 2.3.1cvs15.patchset diff --git a/configure.ac b/configure.ac index f290fae76..f3ef0aba2 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=3 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=14 +EXTRA_VERSION=15 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/prefs_customheader.c b/src/prefs_customheader.c index 5dbe090c8..351358448 100644 --- a/src/prefs_customheader.c +++ b/src/prefs_customheader.c @@ -559,11 +559,11 @@ static void prefs_custom_header_val_from_file_cb(void) const gchar *hdr = gtk_entry_get_text(GTK_ENTRY(customhdr.hdr_entry)); if (!strcmp(hdr, "Face")) - filename = filesel_select_file_open_with_filter(_("Choose file"), NULL, "*.png"); + filename = filesel_select_file_open(_("Choose a png file"), NULL); else if (!strcmp(hdr, "X-Face")) - filename = filesel_select_file_open_with_filter(_("Choose file"), NULL, "*.xbm"); + filename = filesel_select_file_open(_("Choose an xbm file"), NULL); else - filename = filesel_select_file_open_with_filter(_("Choose file"), NULL, "*.txt"); + filename = filesel_select_file_open(_("Choose a text file"), NULL); if (!strcmp(hdr, "Face") || !strcmp(hdr, "X-Face")) { if (filename && is_file_exist(filename)) {