mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 11:06:08 +00:00
Clicking outside deselects object.
Timeline time offset fix.
This commit is contained in:
@@ -1148,10 +1148,20 @@ public final class ImagePanel extends JPanel implements MediaDisplay {
|
||||
freeTransformDepth(depthStateUnderCursor.depth);
|
||||
firePlaceObjectSelected();
|
||||
}
|
||||
} else if (selectionMode) {
|
||||
} else if ((altDown && !selectionMode) || selectionMode){
|
||||
selectDepth(depthStateUnderCursor.depth);
|
||||
firePlaceObjectSelected();
|
||||
}
|
||||
} else {
|
||||
if (transformSelectionMode) {
|
||||
if (mode == Cursor.DEFAULT_CURSOR) {
|
||||
freeTransformDepth(-1);
|
||||
firePlaceObjectSelected();
|
||||
}
|
||||
} else if ((altDown && !selectionMode) || selectionMode) {
|
||||
selectDepth(-1);
|
||||
firePlaceObjectSelected();
|
||||
}
|
||||
}
|
||||
if (!selectionMode) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user