mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-30 20:15:38 +00:00
Fixed an issue where TextListComponent would not correctly handle the forceUppercase theme property.
This commit is contained in:
parent
6a7f002a94
commit
22200c3025
|
@ -80,9 +80,9 @@ public:
|
|||
it->data.textCache.reset();
|
||||
}
|
||||
|
||||
void setUppercase(bool /*uppercase*/)
|
||||
void setUppercase(bool uppercase)
|
||||
{
|
||||
mUppercase = true;
|
||||
mUppercase = uppercase;
|
||||
for (auto it = mEntries.begin(); it != mEntries.end(); it++)
|
||||
it->data.textCache.reset();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue