mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
ImguiSystem: change default keys
The home key should be reserved for console input as this is useful when running script code through the console, and needing to switch cursor positions to fix a typo or copy something. Page Up and Page Down weren't used and are less likely to be used by something in the game, remapped the defaults' secondary to these keys.
This commit is contained in:
parent
7a40db4d85
commit
f5f14c153f
4
src/thirdparty/imgui/misc/imgui_utility.h
vendored
4
src/thirdparty/imgui/misc/imgui_utility.h
vendored
@ -9,13 +9,13 @@ public:
|
||||
struct
|
||||
{
|
||||
int m_nBind0 = VK_OEM_3;
|
||||
int m_nBind1 = VK_INSERT;
|
||||
int m_nBind1 = VK_PRIOR;
|
||||
} m_ConsoleConfig;
|
||||
|
||||
struct
|
||||
{
|
||||
int m_nBind0 = VK_F10;
|
||||
int m_nBind1 = VK_HOME;
|
||||
int m_nBind1 = VK_NEXT;
|
||||
} m_BrowserConfig;
|
||||
|
||||
void Load();
|
||||
|
Loading…
x
Reference in New Issue
Block a user