fixed bug when saving plan
This commit is contained in:
@@ -2,4 +2,13 @@ package de.srsoftware.web4rail.tiles;
|
||||
|
||||
public class Shadow extends Tile{
|
||||
|
||||
private Tile overlay;
|
||||
|
||||
public Shadow(Tile overlay) {
|
||||
this.overlay = overlay;
|
||||
}
|
||||
|
||||
public Tile overlay() {
|
||||
return overlay;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,8 +35,8 @@ public abstract class Tile {
|
||||
return this;
|
||||
}
|
||||
|
||||
public static Tag propMenu() {
|
||||
return new Window("tile-properties",t("Properties")).content(t("This tile has no properties"));
|
||||
public Tag propMenu() {
|
||||
return new Window("tile-properties",t("Properties")).content(t("This tile ({}) has no properties",getClass().getSimpleName()));
|
||||
}
|
||||
|
||||
public Tag tag() throws IOException {
|
||||
|
||||
Reference in New Issue
Block a user