mirror of https://github.com/GNOME/gimp.git
The paint and ink tools are synchronous.
Sun Oct 4 21:07:07 BST 1998 Adam D. Moss <adam@gimp.org> * app/ink.c app/paint_core.c: The paint and ink tools are synchronous.
This commit is contained in:
parent
c3d66ee292
commit
0499488635
|
@ -1,3 +1,8 @@
|
||||||
|
Sun Oct 4 21:07:07 BST 1998 Adam D. Moss <adam@gimp.org>
|
||||||
|
|
||||||
|
* app/ink.c app/paint_core.c: The paint and ink tools
|
||||||
|
are synchronous.
|
||||||
|
|
||||||
Sat Oct 3 21:01:34 BST 1998 Adam D. Moss <adam@gimp.org>
|
Sat Oct 3 21:01:34 BST 1998 Adam D. Moss <adam@gimp.org>
|
||||||
|
|
||||||
* app/channel.c app/channel_ops.c app/disp_callbacks.c
|
* app/channel.c app/channel_ops.c app/disp_callbacks.c
|
||||||
|
|
|
@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, b);
|
ink_paste (ink_tool, drawable, b);
|
||||||
ink_tool->last_blob = b;
|
ink_tool->last_blob = b;
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, blob_union);
|
ink_paste (ink_tool, drawable, blob_union);
|
||||||
g_free (blob_union);
|
g_free (blob_union);
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, b);
|
ink_paste (ink_tool, drawable, b);
|
||||||
ink_tool->last_blob = b;
|
ink_tool->last_blob = b;
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, blob_union);
|
ink_paste (ink_tool, drawable, blob_union);
|
||||||
g_free (blob_union);
|
g_free (blob_union);
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
@ -209,7 +209,7 @@ paint_core_button_press (tool, bevent, gdisp_ptr)
|
||||||
else
|
else
|
||||||
(* paint_core->paint_func) (paint_core, drawable, MOTION_PAINT);
|
(* paint_core->paint_func) (paint_core, drawable, MOTION_PAINT);
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -263,7 +263,7 @@ paint_core_motion (tool, mevent, gdisp_ptr)
|
||||||
|
|
||||||
paint_core_interpolate (paint_core, gimage_active_drawable (gdisp->gimage));
|
paint_core_interpolate (paint_core, gimage_active_drawable (gdisp->gimage));
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
|
|
||||||
paint_core->lastx = paint_core->curx;
|
paint_core->lastx = paint_core->curx;
|
||||||
paint_core->lasty = paint_core->cury;
|
paint_core->lasty = paint_core->cury;
|
||||||
|
|
|
@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, b);
|
ink_paste (ink_tool, drawable, b);
|
||||||
ink_tool->last_blob = b;
|
ink_tool->last_blob = b;
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, blob_union);
|
ink_paste (ink_tool, drawable, blob_union);
|
||||||
g_free (blob_union);
|
g_free (blob_union);
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, b);
|
ink_paste (ink_tool, drawable, b);
|
||||||
ink_tool->last_blob = b;
|
ink_tool->last_blob = b;
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
|
||||||
ink_paste (ink_tool, drawable, blob_union);
|
ink_paste (ink_tool, drawable, blob_union);
|
||||||
g_free (blob_union);
|
g_free (blob_union);
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
@ -209,7 +209,7 @@ paint_core_button_press (tool, bevent, gdisp_ptr)
|
||||||
else
|
else
|
||||||
(* paint_core->paint_func) (paint_core, drawable, MOTION_PAINT);
|
(* paint_core->paint_func) (paint_core, drawable, MOTION_PAINT);
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -263,7 +263,7 @@ paint_core_motion (tool, mevent, gdisp_ptr)
|
||||||
|
|
||||||
paint_core_interpolate (paint_core, gimage_active_drawable (gdisp->gimage));
|
paint_core_interpolate (paint_core, gimage_active_drawable (gdisp->gimage));
|
||||||
|
|
||||||
gdisplay_flush (gdisp);
|
gdisplay_flush_now (gdisp);
|
||||||
|
|
||||||
paint_core->lastx = paint_core->curx;
|
paint_core->lastx = paint_core->curx;
|
||||||
paint_core->lasty = paint_core->cury;
|
paint_core->lasty = paint_core->cury;
|
||||||
|
|
Loading…
Reference in New Issue