We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f2eecc commit 27552f4Copy full SHA for 27552f4
2 files changed
gui/AppList.cpp
@@ -114,7 +114,9 @@ bool AppList::process(InputEvents* event)
114
ret |= keyboard.process(event);
115
if (event->isKeyDown() && event->held(Y_BUTTON))
116
ret |= ListElement::process(event); // continue processing ONLY if they're pressing Y
117
- return ret;
+
118
+ if (needsUpdate) update();
119
+ return ret;
120
}
121
122
int origHighlight = this->highlighted;
gui/Keyboard.cpp
@@ -297,7 +297,6 @@ const std::string& Keyboard::getTextInput()
297
298
void Keyboard::inputChanged()
299
{
300
- printf("input has changed\n");
301
if (inputCallback)
302
inputCallback();
303
0 commit comments