Added Display object depth in flash panel - lowercase, translation

This commit is contained in:
Jindra Petřík
2021-11-30 07:25:13 +01:00
parent 52270d33b0
commit 2011684b7f
4 changed files with 12 additions and 3 deletions

View File

@@ -2208,7 +2208,9 @@ public final class ImagePanel extends JPanel implements MediaDisplay {
CharacterTag c = swf.getCharacter(ds.characterId);
ret.append(c.toString());
if(ds.depth > 0) {
ret.append(" Depth: ");
ret.append(" ");
ret.append(AppStrings.translate("imagePanel.depth"));
ret.append(" ");
ret.append(ds.depth);
}
}