Apply small font option only to dynamic overlays

Instead of applying this configuration option to both layouted overlays
that are supposed to follow XP tracker layout 1 to 1, apply this setting
only for dynamic overlays and tooltsip (e.g mouse highlighting, ground
items, player names).

Closes: #1288

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-04-10 16:27:19 +02:00
parent eb82baa625
commit 0d078622e0
2 changed files with 13 additions and 8 deletions

View File

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