Skip to content
This repository has been archived by the owner on Dec 15, 2018. It is now read-only.

Commit

Permalink
Made crash fix default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
quanticc committed Apr 7, 2016
1 parent d3f3fa9 commit 753bd49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/lwrt/SettingsManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public enum Key {
Insecure(false),
VdmSrcDemoFix(false),
InstallFonts(true),
CopyUserConfig(false),
CopyUserConfig(true),
CustomSettings("// Custom User Settings"),
CustomSettingsDialogWidth(300, 200, Integer.MAX_VALUE),
CustomSettingsDialogHeight(200, 100, Integer.MAX_VALUE),
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ui/LawenaView.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public LawenaView() {
mnAdvanced.add(installFonts);

JCheckBoxMenuItem copyUserConfig =
new JCheckBoxMenuItem("Copy config.cfg to Lawena");
new JCheckBoxMenuItem("Crash Fix: Use config.cfg");
mnAdvanced.add(copyUserConfig);

JSeparator separator_5 = new JSeparator();
Expand Down

0 comments on commit 753bd49

Please sign in to comment.