Mercurial > dive4elements > river
changeset 8635:c421c9530aba
Do not show lines if showlines is not set.
As with points lines should only be shown if showlines is
explicitly set to true and not by default. Every line should
have a theme to be editable
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Fri, 27 Mar 2015 14:39:01 +0100 |
parents | 57e0bfda1c76 |
children | 7d1a32a543cb |
files | artifacts/src/main/java/org/dive4elements/river/themes/ThemeDocument.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/artifacts/src/main/java/org/dive4elements/river/themes/ThemeDocument.java Fri Mar 27 13:40:25 2015 +0100 +++ b/artifacts/src/main/java/org/dive4elements/river/themes/ThemeDocument.java Fri Mar 27 14:39:01 2015 +0100 @@ -358,7 +358,7 @@ public boolean parseShowLine() { String show = getValue(SHOW_LINE); - return parseBoolean(show, true); + return parseBoolean(show, false); } public int parseFontStyle() {