Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

input_context.h: make registered_manual_keys private #77476

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading