Skip to content

Commit

Permalink
disable docbook validation by default
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmanusta committed Nov 5, 2016
1 parent 08166be commit f326085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/kodcu/config/EditorConfigBean.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class EditorConfigBean extends ConfigurationBase {
private ObjectProperty<Integer> wrapLimit = new SimpleObjectProperty<>(0);
private BooleanProperty showGutter = new SimpleBooleanProperty(false);
private BooleanProperty autoUpdate = new SimpleBooleanProperty(true);
private BooleanProperty validateDocbook = new SimpleBooleanProperty(true);
private BooleanProperty validateDocbook = new SimpleBooleanProperty(false);
private StringProperty clipboardImageFilePattern = new SimpleStringProperty("'Image'-ddMMyy-hhmmss.SSS'.png'");
private DoubleProperty screenX = new SimpleDoubleProperty(0);
private DoubleProperty screenY = new SimpleDoubleProperty(0);
Expand Down Expand Up @@ -408,7 +408,7 @@ public void load(ActionEvent... actionEvent) {
boolean showGutter = jsonObject.getBoolean("showGutter", false);
int wrapLimit = jsonObject.getInt("wrapLimit", 0);
boolean autoUpdate = jsonObject.getBoolean("autoUpdate", true);
final boolean validateDocbook = jsonObject.getBoolean("validateDocbook", true);
final boolean validateDocbook = jsonObject.getBoolean("validateDocbook", false);
String clipboardImageFilePattern = jsonObject.getString("clipboardImageFilePattern", "'Image'-ddMMyy-hhmmss.SSS'.png'");
String foldStyle = jsonObject.getString("foldStyle", "default");
int hangFileSizeLimit = jsonObject.getInt("hangFileSizeLimit", 3);
Expand Down

0 comments on commit f326085

Please sign in to comment.