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
This commit is contained in:
Paweł Pękala 2011-11-19 21:15:13 +00:00
parent e85d088634
commit 2ce5fd3a0a
4 changed files with 11 additions and 2 deletions

View file

@ -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

View file

@ -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

View file

@ -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=

View file

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