Made not-hide_on_close the default option
This commit is contained in:
		@@ -1,9 +1,7 @@
 | 
				
			|||||||
package envoy.client.data;
 | 
					package envoy.client.data;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import java.io.File;
 | 
					import java.io.*;
 | 
				
			||||||
import java.io.IOException;
 | 
					import java.util.*;
 | 
				
			||||||
import java.util.HashMap;
 | 
					 | 
				
			||||||
import java.util.Map;
 | 
					 | 
				
			||||||
import java.util.prefs.Preferences;
 | 
					import java.util.prefs.Preferences;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import envoy.util.SerializationUtils;
 | 
					import envoy.util.SerializationUtils;
 | 
				
			||||||
@@ -75,7 +73,7 @@ public final class Settings {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	private void supplementDefaults() {
 | 
						private void supplementDefaults() {
 | 
				
			||||||
		items.putIfAbsent("enterToSend", new SettingsItem<>(true, "Enter to send", "Sends a message by pressing the enter key."));
 | 
							items.putIfAbsent("enterToSend", new SettingsItem<>(true, "Enter to send", "Sends a message by pressing the enter key."));
 | 
				
			||||||
		items.putIfAbsent("hideOnClose", new SettingsItem<>(true, "Hide on close", "Hides the chat window when it is closed."));
 | 
							items.putIfAbsent("hideOnClose", new SettingsItem<>(false, "Hide on close", "Hides the chat window when it is closed."));
 | 
				
			||||||
		items.putIfAbsent("currentTheme", new SettingsItem<>("dark", "Current Theme Name", "The name of the currently selected theme."));
 | 
							items.putIfAbsent("currentTheme", new SettingsItem<>("dark", "Current Theme Name", "The name of the currently selected theme."));
 | 
				
			||||||
		items.putIfAbsent("downloadLocation",
 | 
							items.putIfAbsent("downloadLocation",
 | 
				
			||||||
				new SettingsItem<>(new File(System.getProperty("user.home") + "/Downloads/"), "Download location",
 | 
									new SettingsItem<>(new File(System.getProperty("user.home") + "/Downloads/"), "Download location",
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user