Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
GIMP
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2,643
Issues
2,643
List
Boards
Labels
Service Desk
Milestones
Merge Requests
36
Merge Requests
36
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
GIMP
Commits
061dc89d
Commit
061dc89d
authored
Jul 14, 1999
by
Sven Neumann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Watch out! Sven starts to dig into the mysteries of painting and inking!
--Sven
parent
48627bc8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
4 deletions
+24
-4
ChangeLog
ChangeLog
+4
-0
app/ink.c
app/ink.c
+5
-1
app/paint/gimpink.c
app/paint/gimpink.c
+5
-1
app/tools/gimpinktool.c
app/tools/gimpinktool.c
+5
-1
app/tools/ink.c
app/tools/ink.c
+5
-1
No files found.
ChangeLog
View file @
061dc89d
Wed Jul 14 11:42:49 MEST 1999 Sven Neumann <sven@gimp.org>
* app/ink.c: we were leaking a blob at each button_press
Tue Jul 13 22:48:37 BST 1999 Andy Thomas <alt@gimp.org>
* plug-ins/sel2path/sel2path.c
...
...
app/ink.c
View file @
061dc89d
...
...
@@ -876,6 +876,10 @@ ink_button_release (Tool *tool,
/* Set tool state to inactive -- no longer painting */
tool
->
state
=
INACTIVE
;
/* free the last blob */
g_free
(
ink_tool
->
last_blob
);
ink_tool
->
last_blob
=
NULL
;
ink_finish
(
ink_tool
,
gimage_active_drawable
(
gdisp
->
gimage
),
tool
->
ID
);
gdisplays_flush
();
}
...
...
@@ -1573,7 +1577,7 @@ tools_free_ink (Tool *tool)
if
(
ink_tool
->
core
)
draw_core_free
(
ink_tool
->
core
);
/* Free the last blob, if any */
/* Free the last blob, if any
*/
if
(
ink_tool
->
last_blob
)
g_free
(
ink_tool
->
last_blob
);
...
...
app/paint/gimpink.c
View file @
061dc89d
...
...
@@ -876,6 +876,10 @@ ink_button_release (Tool *tool,
/* Set tool state to inactive -- no longer painting */
tool
->
state
=
INACTIVE
;
/* free the last blob */
g_free
(
ink_tool
->
last_blob
);
ink_tool
->
last_blob
=
NULL
;
ink_finish
(
ink_tool
,
gimage_active_drawable
(
gdisp
->
gimage
),
tool
->
ID
);
gdisplays_flush
();
}
...
...
@@ -1573,7 +1577,7 @@ tools_free_ink (Tool *tool)
if
(
ink_tool
->
core
)
draw_core_free
(
ink_tool
->
core
);
/* Free the last blob, if any */
/* Free the last blob, if any
*/
if
(
ink_tool
->
last_blob
)
g_free
(
ink_tool
->
last_blob
);
...
...
app/tools/gimpinktool.c
View file @
061dc89d
...
...
@@ -876,6 +876,10 @@ ink_button_release (Tool *tool,
/* Set tool state to inactive -- no longer painting */
tool
->
state
=
INACTIVE
;
/* free the last blob */
g_free
(
ink_tool
->
last_blob
);
ink_tool
->
last_blob
=
NULL
;
ink_finish
(
ink_tool
,
gimage_active_drawable
(
gdisp
->
gimage
),
tool
->
ID
);
gdisplays_flush
();
}
...
...
@@ -1573,7 +1577,7 @@ tools_free_ink (Tool *tool)
if
(
ink_tool
->
core
)
draw_core_free
(
ink_tool
->
core
);
/* Free the last blob, if any */
/* Free the last blob, if any
*/
if
(
ink_tool
->
last_blob
)
g_free
(
ink_tool
->
last_blob
);
...
...
app/tools/ink.c
View file @
061dc89d
...
...
@@ -876,6 +876,10 @@ ink_button_release (Tool *tool,
/* Set tool state to inactive -- no longer painting */
tool
->
state
=
INACTIVE
;
/* free the last blob */
g_free
(
ink_tool
->
last_blob
);
ink_tool
->
last_blob
=
NULL
;
ink_finish
(
ink_tool
,
gimage_active_drawable
(
gdisp
->
gimage
),
tool
->
ID
);
gdisplays_flush
();
}
...
...
@@ -1573,7 +1577,7 @@ tools_free_ink (Tool *tool)
if
(
ink_tool
->
core
)
draw_core_free
(
ink_tool
->
core
);
/* Free the last blob, if any */
/* Free the last blob, if any
*/
if
(
ink_tool
->
last_blob
)
g_free
(
ink_tool
->
last_blob
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment