mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-17 16:41:51 +00:00
Fixed Hide freetransform button in readonly mode
This commit is contained in:
@@ -37,6 +37,7 @@ All notable changes to this project will be documented in this file.
|
||||
- Loading nested characters when Importassets tag used
|
||||
- Hide various actions for imported tags
|
||||
- Clone tag
|
||||
- Hide freetransform button in readonly mode
|
||||
|
||||
### Changed
|
||||
- Quick search needs minimum of 3 characters
|
||||
|
||||
@@ -894,7 +894,8 @@ public class PreviewPanel extends JPersistentSplitPane implements TagEditorPanel
|
||||
placeImagePanel.setTimelined(((Tag) tag).getTimelined(), ((Tag) tag).getSwf(), frame, true, Configuration.autoPlayPreviews.get(), !Configuration.animateSubsprites.get(), false, !Configuration.playFrameSounds.get(), true);
|
||||
placeImagePanel.selectDepth(tag.getDepth());
|
||||
parametersPanel.setVisible(false);
|
||||
placeEditButton.setVisible(!tag.isReadOnly() && !readOnly);
|
||||
placeEditButton.setVisible(!tag.isReadOnly() && !readOnly);
|
||||
placeFreeTransformButton.setVisible(!tag.isReadOnly() && !readOnly);
|
||||
placeEditButton.setEnabled(true);
|
||||
placeSaveButton.setVisible(false);
|
||||
placeCancelButton.setVisible(false);
|
||||
|
||||
Reference in New Issue
Block a user