From: Paweł Pękala Date: Sat, 19 Nov 2011 21:15:13 +0000 (+0000) Subject: 2011-11-19 [pawel] 3.7.10cvs94 X-Git-Tag: REL_3_8_0~20 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=2ce5fd3a0a763c98fab26e7be61b5ef60958c138 2011-11-19 [pawel] 3.7.10cvs94 * src/mimeview.c Don't highlight icons on right-click, they are not selected and other part is shown which is confusing --- diff --git a/ChangeLog b/ChangeLog index fb17ebfdc..b1d8516d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-11-19 [pawel] 3.7.10cvs94 + + * src/mimeview.c + Don't highlight icons on right-click, they are not + selected and other part is shown which is confusing + 2011-11-19 [mones] 3.7.10cvs93 * manual/advanced.xml diff --git a/PATCHSETS b/PATCHSETS index 9a730e0db..08d7146fc 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -4297,3 +4297,4 @@ ( cvs diff -u -r 1.274.2.338 -r 1.274.2.339 src/mainwindow.c; cvs diff -u -r 1.94.2.223 -r 1.94.2.224 src/messageview.c; cvs diff -u -r 1.204.2.206 -r 1.204.2.207 src/prefs_common.c; cvs diff -u -r 1.103.2.135 -r 1.103.2.136 src/prefs_common.h; cvs diff -u -r 1.395.2.439 -r 1.395.2.440 src/summaryview.c; cvs diff -u -r 1.96.2.236 -r 1.96.2.237 src/textview.c; cvs diff -u -r 1.12.2.28 -r 1.12.2.29 src/textview.h; ) > 3.7.10cvs91.patchset ( cvs diff -u -r 1.1.2.58 -r 1.1.2.59 manual/advanced.xml; cvs diff -u -r 1.1.2.19 -r 1.1.2.20 manual/es/advanced.xml; ) > 3.7.10cvs92.patchset ( cvs diff -u -r 1.1.2.59 -r 1.1.2.60 manual/advanced.xml; ) > 3.7.10cvs93.patchset +( cvs diff -u -r 1.83.2.182 -r 1.83.2.183 src/mimeview.c; ) > 3.7.10cvs94.patchset diff --git a/configure.ac b/configure.ac index 3ba41967d..9b9f68cc4 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=10 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=93 +EXTRA_VERSION=94 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/mimeview.c b/src/mimeview.c index bc0705ff9..c3be98087 100644 --- a/src/mimeview.c +++ b/src/mimeview.c @@ -2288,7 +2288,9 @@ static gboolean icon_clicked_cb (GtkWidget *button, GdkEventButton *event, MimeV gtk_widget_grab_focus(button); } part_button_pressed(mimeview, event, partinfo); - icon_list_toggle_by_mime_info(mimeview, partinfo); + + if (event->button != 3) + icon_list_toggle_by_mime_info(mimeview, partinfo); return FALSE; }