talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 2ce5fd3a0a763c98fab26e7be61b5ef60958c138
parent e85d08863454c0b6cd7cd9fb3aed86900adf5824
Author: Paweł Pękala <c0rn@gazeta.pl>
Date:   Sat, 19 Nov 2011 21:15:13 +0000

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

Diffstat:
MChangeLog | 6++++++
MPATCHSETS | 1+
Mconfigure.ac | 2+-
Msrc/mimeview.c | 4+++-
4 files changed, 11 insertions(+), 2 deletions(-)

diff --git 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 @@ -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 @@ -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 @@ -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; }