mirror of https://github.com/GNOME/gimp.git
app/nav_window.c app/floating_sel.c
Sat Sep 11 22:45:12 BST 1999 Andy Thomas <alt@gimp.org> * app/nav_window.c * app/floating_sel.c Hopefully fix for nav_popup when using tablets. Also applied the patch supplied by Garry R. Osgood. Thanks.
This commit is contained in:
parent
135ce1f889
commit
d045b9667a
|
@ -1,3 +1,11 @@
|
|||
Sat Sep 11 22:45:12 BST 1999 Andy Thomas <alt@gimp.org>
|
||||
|
||||
* app/nav_window.c
|
||||
* app/floating_sel.c
|
||||
|
||||
Hopefully fix for nav_popup when using tablets.
|
||||
Also applied the patch supplied by Garry R. Osgood. Thanks.
|
||||
|
||||
Sat Sep 11 21:54:10 CEST 1999 vidar@prosalg.no (Vidar Madsen)
|
||||
|
||||
* plug-ins/common/spheredesigner.c: Added load/save +
|
||||
|
|
|
@ -113,6 +113,10 @@ floating_sel_anchor (Layer *layer)
|
|||
/* Start a floating selection anchoring undo */
|
||||
undo_push_group_start (gimage, FS_ANCHOR_UNDO);
|
||||
|
||||
/* Invalidate the previews of the layer that will be composited with the floating section. */
|
||||
|
||||
drawable_invalidate_preview (layer->fs.drawable);
|
||||
|
||||
/* Relax the floating selection */
|
||||
floating_sel_relax (layer, TRUE);
|
||||
|
||||
|
|
|
@ -627,7 +627,8 @@ nav_window_grab_pointer(NavWinData *iwd,
|
|||
ret = gdk_pointer_grab (widget->window, TRUE,
|
||||
GDK_BUTTON_RELEASE_MASK |
|
||||
GDK_POINTER_MOTION_HINT_MASK |
|
||||
GDK_BUTTON_MOTION_MASK,
|
||||
GDK_BUTTON_MOTION_MASK |
|
||||
GDK_EXTENSION_EVENTS_ALL,
|
||||
widget->window, cursor, 0);
|
||||
|
||||
gdk_cursor_destroy(cursor);
|
||||
|
|
|
@ -627,7 +627,8 @@ nav_window_grab_pointer(NavWinData *iwd,
|
|||
ret = gdk_pointer_grab (widget->window, TRUE,
|
||||
GDK_BUTTON_RELEASE_MASK |
|
||||
GDK_POINTER_MOTION_HINT_MASK |
|
||||
GDK_BUTTON_MOTION_MASK,
|
||||
GDK_BUTTON_MOTION_MASK |
|
||||
GDK_EXTENSION_EVENTS_ALL,
|
||||
widget->window, cursor, 0);
|
||||
|
||||
gdk_cursor_destroy(cursor);
|
||||
|
|
|
@ -113,6 +113,10 @@ floating_sel_anchor (Layer *layer)
|
|||
/* Start a floating selection anchoring undo */
|
||||
undo_push_group_start (gimage, FS_ANCHOR_UNDO);
|
||||
|
||||
/* Invalidate the previews of the layer that will be composited with the floating section. */
|
||||
|
||||
drawable_invalidate_preview (layer->fs.drawable);
|
||||
|
||||
/* Relax the floating selection */
|
||||
floating_sel_relax (layer, TRUE);
|
||||
|
||||
|
|
|
@ -627,7 +627,8 @@ nav_window_grab_pointer(NavWinData *iwd,
|
|||
ret = gdk_pointer_grab (widget->window, TRUE,
|
||||
GDK_BUTTON_RELEASE_MASK |
|
||||
GDK_POINTER_MOTION_HINT_MASK |
|
||||
GDK_BUTTON_MOTION_MASK,
|
||||
GDK_BUTTON_MOTION_MASK |
|
||||
GDK_EXTENSION_EVENTS_ALL,
|
||||
widget->window, cursor, 0);
|
||||
|
||||
gdk_cursor_destroy(cursor);
|
||||
|
|
Loading…
Reference in New Issue