Skip to content

Commit

Permalink
Merge pull request #77476 from sonphantrung/sonphantrung-patch-2
Browse files Browse the repository at this point in the history
input_context.h: make registered_manual_keys private
  • Loading branch information
Night-Pryanik authored Nov 18, 2024
2 parents b7009ed + 2573ab1 commit 197090e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/input_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ class input_context
}
};

std::vector<manual_key> registered_manual_keys;

// If true, prevent virtual keyboard from dismissing after a key press while this input context is active.
// NOTE: This won't auto-bring up the virtual keyboard, for that use sdltiles.cpp is_string_input()
bool allow_text_entry;
Expand Down Expand Up @@ -416,7 +414,9 @@ class input_context
input_event first_unassigned_hotkey( const hotkey_queue &queue ) const;
input_event next_unassigned_hotkey( const hotkey_queue &queue, const input_event &prev ) const;
private:

#if defined(__ANDROID__)
std::vector<manual_key> registered_manual_keys;
#endif
std::vector<std::string> registered_actions;
std::string edittext;
public:
Expand Down

0 comments on commit 197090e

Please sign in to comment.