mirror of https://github.com/GNOME/gimp.git
Tus Apr 21 01:59:12 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/iscissors.c: Remove the iscissors outline by stopping the draw_core before bezierifying the selection. There may be memory leaks here (the iscissors stuff does not appear to be freed on bezierify) --Matt
This commit is contained in:
parent
b9212d84e7
commit
aaaeed098b
|
@ -1,3 +1,10 @@
|
||||||
|
Tus Apr 21 01:59:12 EDT 1998 Matthew Wilson <msw@gimp.org>
|
||||||
|
|
||||||
|
* app/iscissors.c: Remove the iscissors outline by stopping the
|
||||||
|
draw_core before bezierifying the selection. There may be
|
||||||
|
memory leaks here (the iscissors stuff does not appear to be freed
|
||||||
|
on bezierify)
|
||||||
|
|
||||||
Mon Apr 20 18:15:54 PDT 1998 Manish Singh <yosh@gimp.org>
|
Mon Apr 20 18:15:54 PDT 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* app/main.c
|
* app/main.c
|
||||||
|
|
|
@ -1799,6 +1799,7 @@ bezierify_boundary (Tool *tool)
|
||||||
|
|
||||||
gdisp = (GDisplay *) tool->gdisp_ptr;
|
gdisp = (GDisplay *) tool->gdisp_ptr;
|
||||||
iscissors = (Iscissors *) tool->private;
|
iscissors = (Iscissors *) tool->private;
|
||||||
|
draw_core_stop (iscissors->core, tool);
|
||||||
|
|
||||||
if (iscissors->num_pts < 4)
|
if (iscissors->num_pts < 4)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1799,6 +1799,7 @@ bezierify_boundary (Tool *tool)
|
||||||
|
|
||||||
gdisp = (GDisplay *) tool->gdisp_ptr;
|
gdisp = (GDisplay *) tool->gdisp_ptr;
|
||||||
iscissors = (Iscissors *) tool->private;
|
iscissors = (Iscissors *) tool->private;
|
||||||
|
draw_core_stop (iscissors->core, tool);
|
||||||
|
|
||||||
if (iscissors->num_pts < 4)
|
if (iscissors->num_pts < 4)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1799,6 +1799,7 @@ bezierify_boundary (Tool *tool)
|
||||||
|
|
||||||
gdisp = (GDisplay *) tool->gdisp_ptr;
|
gdisp = (GDisplay *) tool->gdisp_ptr;
|
||||||
iscissors = (Iscissors *) tool->private;
|
iscissors = (Iscissors *) tool->private;
|
||||||
|
draw_core_stop (iscissors->core, tool);
|
||||||
|
|
||||||
if (iscissors->num_pts < 4)
|
if (iscissors->num_pts < 4)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue