mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-23 18:39:55 +00:00
Fix slice feedback when cel origin < (0,0)
This commit is contained in:
parent
0c5bccfbdb
commit
d4de15bfd7
@ -181,7 +181,9 @@ public:
|
||||
Ink* clone() override { return new SliceInk(*this); }
|
||||
|
||||
bool isSlice() const override { return true; }
|
||||
bool needsCelCoordinates() const override { return false; }
|
||||
bool needsCelCoordinates() const override {
|
||||
return (m_createSlice ? false: true);
|
||||
}
|
||||
|
||||
void prepareInk(ToolLoop* loop) override {
|
||||
m_proc = get_ink_proc<XorInkProcessing>(loop->sprite()->pixelFormat());
|
||||
|
Loading…
x
Reference in New Issue
Block a user