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:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user