forked from devel-factory/xsane
- Rebase patches to include rh/gentoo/debian ones: A 001-xdg-open-as-default-browser.patch A 002-close-fds.patch A 004-ipv6-support.patch A 006-preview-selection.patch A 100-remove-non-working-help.patch A 101-xsane_fix_pdf_floats.patch A 200-fix_options_handling_fix.patch A 201-fix_pdf_xref.patch A 901-desktop-file.patch A 902-license-dialog.patch A 903-fix_broken_links.patch A 904-fix_message_typo.patch A 907-fix_spin_button_pagesize.patch A 908-no-file-selected.patch A 0005-m4.patch A 0010-fix_missing_sane-config.patch - Drop patches hanled in the above: D no-eula.patch D remove-non-working-help.patch D xdg-open-as-default-browser.patch D xsane_fix_pdf_floats.patch D xsane-desktop.patch - Add patch to build with lcms2 instead of lcms: * xsane-0.999-lcms2.patch OBS-URL: https://build.opensuse.org/request/show/511853 OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory/xsane?expand=0&rev=23
61 lines
1.9 KiB
Diff
61 lines
1.9 KiB
Diff
From 81782eb74370afd321dbd394ca1aa60c01bead7f Mon Sep 17 00:00:00 2001
|
|
From: Nils Philippsen <nils@redhat.com>
|
|
Date: Wed, 1 Jun 2011 14:30:14 +0200
|
|
Subject: [PATCH] patch: preview-selection
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Squashed commit of the following:
|
|
|
|
commit 3a238ff28cf8c57d11f41624cf340d2fdbe15c83
|
|
Author: Reinhard Fössmeier <info@ais-sanmarino.org>
|
|
Date: Wed May 12 20:23:18 2010 +0200
|
|
|
|
fixed a problem in mouse event processing
|
|
|
|
Fixed a problem in mouse event processing that interfered with selecting
|
|
the scan rectangle in the preview window.
|
|
---
|
|
src/xsane-preview.c | 9 ++++-----
|
|
1 files changed, 4 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/src/xsane-preview.c b/src/xsane-preview.c
|
|
index f089dd1..264c775 100644
|
|
--- a/src/xsane-preview.c
|
|
+++ b/src/xsane-preview.c
|
|
@@ -80,7 +80,6 @@
|
|
#include "xsane-preview.h"
|
|
#include "xsane-preferences.h"
|
|
#include "xsane-gamma.h"
|
|
-#include <gdk/gdkkeysyms.h>
|
|
|
|
|
|
#ifndef PATH_MAX
|
|
@@ -3023,9 +3022,9 @@ static gint preview_motion_event_handler(GtkWidget *window, GdkEvent *event, gpo
|
|
preview_display_color_components(p, event->motion.x, event->motion.y);
|
|
|
|
switch (((GdkEventMotion *)event)->state &
|
|
- GDK_Num_Lock & GDK_Caps_Lock & GDK_Shift_Lock & GDK_Scroll_Lock) /* mask all Locks */
|
|
+ (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | GDK_BUTTON3_MASK)) /* only check for mouse buttons */
|
|
{
|
|
- case 256: /* left button */
|
|
+ case GDK_BUTTON1_MASK: /* left button */
|
|
|
|
DBG(DBG_info2, "left button\n");
|
|
|
|
@@ -3292,8 +3291,8 @@ static gint preview_motion_event_handler(GtkWidget *window, GdkEvent *event, gpo
|
|
}
|
|
break;
|
|
|
|
- case 512: /* middle button */
|
|
- case 1024: /* right button */
|
|
+ case GDK_BUTTON2_MASK: /* middle button */
|
|
+ case GDK_BUTTON3_MASK: /* right button */
|
|
DBG(DBG_info2, "middle or right button\n");
|
|
|
|
if (p->selection_drag)
|
|
--
|
|
1.7.5.2
|
|
|