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

Pro Art Hotkeys and visual modes support #2962

Merged
merged 9 commits into from
Aug 11, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Emoji popup
  • Loading branch information
seerge committed Aug 10, 2024
commit 3fd1869d3fcfd08b57a0f01eddfaa9df80bd48e1
3 changes: 3 additions & 0 deletions app/Input/InputDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,9 @@ static void HandleOptimizationEvent(int EventID)
case 53: // Fn+F6 on GA-502DU model
NativeMethods.TurnOffScreen();
return;
case 900: // Fn+F8 emojis popup
KeyboardHook.KeyKeyPress(Keys.LWin, Keys.OemSemicolon);
return;


}
Expand Down