app: fix tool->progress_cancelable assignment in gimp_tool_progress_start()

dunno if any of the tool bugs was caused by this, but it was clearly
broken.
This commit is contained in:
Michael Natterer 2019-02-10 21:22:16 +01:00
parent cb066484d2
commit 8d857cea86

View file

@ -166,7 +166,7 @@ gimp_tool_progress_start (GimpProgress *progress,
G_CALLBACK (gimp_tool_progress_key_press),
tool);
tool->progress_cancelable;
tool->progress_cancelable = cancelable;
return progress;
}