do not show monitor by default

This commit is contained in:
Zlatin Balevsky
2019-06-22 14:51:26 +01:00
parent a6e559ec67
commit b6e5b54f05

View File

@@ -12,7 +12,7 @@ class UISettings {
UISettings(Properties props) {
lnf = props.getProperty("lnf", "system")
showMonitor = Boolean.parseBoolean(props.getProperty("showMonitor", "true"))
showMonitor = Boolean.parseBoolean(props.getProperty("showMonitor", "false"))
font = props.getProperty("font",null)
clearCancelledDownloads = Boolean.parseBoolean(props.getProperty("clearCancelledDownloads","true"))
clearFinishedDownloads = Boolean.parseBoolean(props.getProperty("clearFinishedDownloads","false"))