mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-25 06:26:42 +01:00
- [Canvas] Fix error when holding Ctrl + Shift while creating 0 width line.
This commit is contained in:
parent
f1120a928c
commit
c79b2abfef
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ function canvas_tool_brush(brush, eraser = false) : canvas_tool() constructor {
|
|||
var _rat = round(_ddx / _ddy);
|
||||
_ddx = _ddy * _rat;
|
||||
|
||||
} else {
|
||||
} else if(abs(_dx) < abs(_dy)) {
|
||||
var _rat = round(_ddy / _ddx);
|
||||
_ddy = _ddx * _rat;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
LATEST_VERSION = 11700;
|
||||
VERSION = 11761;
|
||||
SAVE_VERSION = 11700;
|
||||
VERSION_STRING = "1.17.7.002";
|
||||
VERSION_STRING = "1.17.7.003";
|
||||
BUILD_NUMBER = 11761;
|
||||
|
||||
globalvar HOTKEYS, HOTKEY_CONTEXT;
|
||||
|
|
Loading…
Reference in a new issue