Allow smaller Fontsize
solariz opened this issue ยท 3 comments
Hey,
simple change request. Currently all Fontsize Options are limited to 10-20 on a HighRes Display 10 is still pretty huge. I just changed it by myself would be nice to see it changed in the source.
--- Options.org.lua
+++ Options.lua
@@ -305,7 +305,7 @@
name = BQTL:GetStringWrap('SETTINGS_TRACKER_HEADER_FONT_SIZE_NAME'),
arg = "TrackerHeaderFontSize",
type = "range",
- min = 10,
+ min = 5,
max = 20,
step = 1,
order = order(),
@@ -317,7 +317,7 @@
name = BQTL:GetStringWrap('SETTINGS_QUEST_HEADER_FONT_SIZE_NAME'),
arg = "QuestHeaderFontSize",
type = "range",
- min = 10,
+ min = 5,
max = 20,
step = 1,
order = order(),
@@ -331,7 +331,7 @@
name = BQTL:GetStringWrap('SETTINGS_OBJECTIVE_FONT_SIZE_NAME'),
arg = "ObjectiveFontSize",
type = "range",
- min = 10,
+ min = 5,
max = 20,
step = 1,
order = order(),
Thanks alot
Hey @solariz you should now be able to adjust the font size lower in 1.7.2!
Let me know if you run into any issues.
Hey @solariz thanks for taking the time to submit an issue!
I'll release a patch that increases the range, however I'd prefer to make it so the default values display consistently regardless of your screen resolution.
Can you execute the following in your chat window and let me know what the output is?
/dump GetScreenWidth()
/dump GetScreenHeight()
/dump UIParent:GetEffectiveScale()