mirror of https://github.com/aseprite/aseprite.git
Merge branch 'main' into beta
This commit is contained in:
commit
943c3b28df
|
@ -12,6 +12,7 @@
|
|||
*.res
|
||||
.DS_Store
|
||||
.vs
|
||||
.vscode
|
||||
tests/_test*
|
||||
build
|
||||
.build
|
||||
|
|
2
laf
2
laf
|
@ -1 +1 @@
|
|||
Subproject commit dfef13be6f2d6b199f3162820d37b4a906eeae79
|
||||
Subproject commit ef0c63aa77871d8ff77aa0c66d025656c76bbbfa
|
|
@ -2452,8 +2452,10 @@ void Editor::onTiledModeChange()
|
|||
screenPos = editorToScreen(spritePos);
|
||||
|
||||
auto lastPoint = document()->lastDrawingPoint();
|
||||
lastPoint += mainTilePosition() - m_oldMainTilePos;
|
||||
document()->setLastDrawingPoint(lastPoint);
|
||||
if (lastPoint != Doc::NoLastDrawingPoint()) {
|
||||
lastPoint += mainTilePosition() - m_oldMainTilePos;
|
||||
document()->setLastDrawingPoint(lastPoint);
|
||||
}
|
||||
|
||||
centerInSpritePoint(spritePos);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue