Skip to content

Commit

Permalink
screen keyboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
user95401 committed Nov 4, 2024
1 parent dfb0cd1 commit a1b56a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,14 @@ class IssueCommentItem : public CCLayer {
};
}
);
Ref<LambdaNode> focus = LambdaNode::createToEndlessCalls(
Ref<LambdaNode> focus =
#ifdef GEODE_IS_DESKTOP
LambdaNode::createToEndlessCalls
#else
LambdaNode::createToCallOnce
#endif // GEODE_IS_DESKTOP

(
[comment_edit_input]() {
if (comment_edit_input) {
if (!comment_edit_input->getInputNode()->m_cursor->isVisible()) {
Expand Down

0 comments on commit a1b56a2

Please sign in to comment.