Merge pull request #473 from Unmoon/idle-focus-alert-default

Idle Notifier - Change wording and default value of "Alert When Focused"
This commit is contained in:
Adam
2018-02-01 17:52:48 -05:00
committed by GitHub

View File

@@ -59,13 +59,13 @@ public interface IdleNotifierConfig extends Config
@ConfigItem(
keyName = "focused",
name = "Alert When Focused",
name = "Notify When Focused",
description = "Toggles idle notifications for when the client is focused",
position = 3
)
default boolean alertWhenFocused()
{
return true;
return false;
}
@ConfigItem(