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:
BST 1998 Adam D. Moss 1998-10-04 20:16:17 +00:00 committed by Adam D. Moss
parent c3d66ee292
commit 0499488635
7 changed files with 17 additions and 12 deletions

View File

@ -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>
* app/channel.c app/channel_ops.c app/disp_callbacks.c

View File

@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
ink_paste (ink_tool, drawable, b);
ink_tool->last_blob = b;
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
ink_paste (ink_tool, drawable, blob_union);
g_free (blob_union);
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void

View File

@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
ink_paste (ink_tool, drawable, b);
ink_tool->last_blob = b;
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
ink_paste (ink_tool, drawable, blob_union);
g_free (blob_union);
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void

View File

@ -209,7 +209,7 @@ paint_core_button_press (tool, bevent, gdisp_ptr)
else
(* paint_core->paint_func) (paint_core, drawable, MOTION_PAINT);
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
void
@ -263,7 +263,7 @@ paint_core_motion (tool, mevent, gdisp_ptr)
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->lasty = paint_core->cury;

View File

@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
ink_paste (ink_tool, drawable, b);
ink_tool->last_blob = b;
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
ink_paste (ink_tool, drawable, blob_union);
g_free (blob_union);
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void

View File

@ -475,7 +475,7 @@ ink_button_press (Tool *tool,
ink_paste (ink_tool, drawable, b);
ink_tool->last_blob = b;
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void
@ -531,7 +531,7 @@ ink_motion (Tool *tool,
ink_paste (ink_tool, drawable, blob_union);
g_free (blob_union);
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
static void

View File

@ -209,7 +209,7 @@ paint_core_button_press (tool, bevent, gdisp_ptr)
else
(* paint_core->paint_func) (paint_core, drawable, MOTION_PAINT);
gdisplay_flush (gdisp);
gdisplay_flush_now (gdisp);
}
void
@ -263,7 +263,7 @@ paint_core_motion (tool, mevent, gdisp_ptr)
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->lasty = paint_core->cury;