Idle Notifier - Change wording and default value of "Alert When Focused"

This commit is contained in:
Unmoon
2018-01-28 03:10:15 +02:00
parent 148f8dfb31
commit 85d0fbe137

View File

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