FrodoB
August 4th, 2022, 22:27
As seen here, the Labels of the Combat Tracker can't be seen properly:
53864
Which is unfortunate, especially because the fix is quite easy.
Background: The Savage Worlds ruleset does not use the label_ct tamplate to set the colors and font of the headers. So there are two approaches to this:
1. The template explicitly forces its font and color choice upon the labels:
<template name="cttitle_base">
<label_ct/>
</template>
2. The ruleset adapts by using label_ct instead of explicitly setting colors (same code as above). However, seeing how there are a lot of Savage Worlds specific themes I am not sure if this would work without breaking a fair number of those. My gut feeling is that this would be the best way that won't break anything, but I'm pretty sure nobody wants to be responsible to shatter a whole bunch of themes...
As you can see, this fixes the Wnd/Fatg problem quite nicely:
53865
(The "Round" label is also black, but this is something I think the Savage Worlds side has to fix - the label does not use a template, so nothing to override)
In case anybody wants a quick fix, I slapped together an extension. No promises that it won't break upon updates.
53864
Which is unfortunate, especially because the fix is quite easy.
Background: The Savage Worlds ruleset does not use the label_ct tamplate to set the colors and font of the headers. So there are two approaches to this:
1. The template explicitly forces its font and color choice upon the labels:
<template name="cttitle_base">
<label_ct/>
</template>
2. The ruleset adapts by using label_ct instead of explicitly setting colors (same code as above). However, seeing how there are a lot of Savage Worlds specific themes I am not sure if this would work without breaking a fair number of those. My gut feeling is that this would be the best way that won't break anything, but I'm pretty sure nobody wants to be responsible to shatter a whole bunch of themes...
As you can see, this fixes the Wnd/Fatg problem quite nicely:
53865
(The "Round" label is also black, but this is something I think the Savage Worlds side has to fix - the label does not use a template, so nothing to override)
In case anybody wants a quick fix, I slapped together an extension. No promises that it won't break upon updates.