Skip to content

Commit

Permalink
GPU mode toast notifications #3286
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Oct 23, 2024
1 parent a024c05 commit f320da9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/Input/InputDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -450,9 +450,11 @@ public void KeyPressed(object sender, KeyPressedEventArgs e)
ToggleScreenRate();
break;
case Keys.F14:
Program.toast.RunToast(Properties.Strings.EcoMode);
Program.settingsForm.gpuControl.SetGPUMode(AsusACPI.GPUModeEco);
break;
case Keys.F15:
Program.toast.RunToast(Properties.Strings.StandardMode);
Program.settingsForm.gpuControl.SetGPUMode(AsusACPI.GPUModeStandard);
break;
case Keys.F16:
Expand Down

0 comments on commit f320da9

Please sign in to comment.