Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ protected Class<? extends McfArea> getAreaClass() {

protected List<String[]> getSpecialAreaAttributes() {
List<String[]> result = new Vector<String[]>();
result.add(new String[] { "zposition", "zPosition" });
result.add(new String[] { "areatype", "areaType" });
result.add(new String[] { "borderenabled", "borderEnabled" });
result.add(new String[] { "sizeborder", "borderSize" });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public int getZPosition() {
return zPosition;
}

public void setZPosition(int zPosition) {
public void setZposition(int zPosition) {
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this.zPosition = zPosition;
}

Expand Down