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:
Kawe Mazidjatari 2024-11-17 03:09:03 +01:00
parent 7a40db4d85
commit f5f14c153f

View File

@ -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();