Skip to content

Commit 27552f4

Browse files
committed
fix for search keyboard using joystick
1 parent 3f2eecc commit 27552f4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

gui/AppList.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ bool AppList::process(InputEvents* event)
114114
ret |= keyboard.process(event);
115115
if (event->isKeyDown() && event->held(Y_BUTTON))
116116
ret |= ListElement::process(event); // continue processing ONLY if they're pressing Y
117-
return ret;
117+
118+
if (needsUpdate) update();
119+
return ret;
118120
}
119121

120122
int origHighlight = this->highlighted;

gui/Keyboard.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,6 @@ const std::string& Keyboard::getTextInput()
297297

298298
void Keyboard::inputChanged()
299299
{
300-
printf("input has changed\n");
301300
if (inputCallback)
302301
inputCallback();
303302
}

0 commit comments

Comments
 (0)