Merge pull request #479 from Abextm/config-warning
Add config warnings for non-immediate options
This commit is contained in:
@@ -57,7 +57,9 @@ public interface RuneLiteConfig extends Config
|
||||
keyName = "uiEnableCustomChrome",
|
||||
name = "Enable custom window chrome",
|
||||
description = "Use Runelite's custom window title and borders.",
|
||||
confirmationWarining = "Please restart your client after changing this setting"
|
||||
confirmationWarining = "Please restart your client after changing this setting",
|
||||
warnOnEnable = true,
|
||||
warnOnDisable = true
|
||||
)
|
||||
default boolean enableCustomChrome()
|
||||
{
|
||||
|
||||
@@ -38,7 +38,10 @@ public interface LowMemoryConfig extends Config
|
||||
@ConfigItem(
|
||||
keyName = "enabled",
|
||||
name = "Enabled",
|
||||
description = "Configures whether or not low memory mode is enabled"
|
||||
description = "Configures whether or not low memory mode is enabled",
|
||||
confirmationWarining = "Please re-log into RuneScape for this change to fully take effect.",
|
||||
warnOnEnable = true,
|
||||
warnOnDisable = true
|
||||
)
|
||||
default boolean enabled()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user