mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 21:10:42 +00:00
Fix picking up global control shortcuts incorrectly
This commit is contained in:
@@ -1129,7 +1129,7 @@ namespace renderdocui.Windows
|
||||
|
||||
for (int i = 0; i < digits.Length; i++)
|
||||
{
|
||||
if ((keyData & digits[i]) == digits[i])
|
||||
if (keyData == (Keys.Control|digits[i]))
|
||||
{
|
||||
EventBrowser eb = m_Core.GetEventBrowser();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user