Inverse window resize condition

- Change isResizable to lockWindowSize
- Update the description and keyName
- Inverse the condition

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-03-06 20:19:11 +01:00
parent a55683a5f5
commit 79b660aad1
3 changed files with 8 additions and 11 deletions

View File

@@ -45,13 +45,13 @@ public interface RuneLiteConfig extends Config
}
@ConfigItem(
keyName = "isResizable",
name = "Enable window resizing",
description = "Determines if the window is resizable"
keyName = "lockWindowSize",
name = "Lock window size",
description = "Determines if the window resizing is allowed or not"
)
default boolean isResizable()
default boolean lockWindowSize()
{
return true;
return false;
}
@ConfigItem(