mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 23:15:38 +00:00
remove debug logs
This commit is contained in:
parent
94c6640e72
commit
32520a1c3a
|
@ -124,14 +124,11 @@ void HelpComponent::updateGrid()
|
||||||
|
|
||||||
// State variable indicating whether gui is dimmed.
|
// State variable indicating whether gui is dimmed.
|
||||||
bool isDimmed = mWindow->isBackgroundDimmed();
|
bool isDimmed = mWindow->isBackgroundDimmed();
|
||||||
LOG(LogError) << "updateGrid() called. dimmed = \"" << isDimmed << "\"";
|
|
||||||
|
|
||||||
for (auto it = mPrompts.cbegin(); it != mPrompts.cend(); it++) {
|
for (auto it = mPrompts.cbegin(); it != mPrompts.cend(); it++) {
|
||||||
auto icon = std::make_shared<ImageComponent>(mWindow);
|
auto icon = std::make_shared<ImageComponent>(mWindow);
|
||||||
icon->setImage(getIconTexture(it->first.c_str()));
|
icon->setImage(getIconTexture(it->first.c_str()));
|
||||||
icon->setColorShift(isDimmed ? mStyle.iconColorDimmed : mStyle.iconColor);
|
icon->setColorShift(isDimmed ? mStyle.iconColorDimmed : mStyle.iconColor);
|
||||||
LOG(LogError) << "setColorShift() called. dimmed = \""
|
|
||||||
<< (isDimmed ? mStyle.iconColorDimmed : mStyle.iconColor) << "\"";
|
|
||||||
icon->setResize(0, height);
|
icon->setResize(0, height);
|
||||||
icons.push_back(icon);
|
icons.push_back(icon);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue