Add option for enabling small font

- Add option for toggling between small and large font for in-game
overlays
- Normalize the font size usage around overlays

Closes: #1214

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-04-01 08:53:42 +02:00
parent a24b7b427e
commit 4ddd3bc32f
7 changed files with 25 additions and 39 deletions

View File

@@ -116,4 +116,14 @@ public interface RuneLiteConfig extends Config
{
return true;
}
@ConfigItem(
keyName = "useSmallFont",
name = "Use smaller font for in-game overlays",
description = "Toggles between small and regular RuneScape font for in-game overlays"
)
default boolean useSmallFont()
{
return false;
}
}