Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Jun 25, 2024
1 parent 4c694f5 commit 35920bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/injection/shared/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function ensurePlugins() {
'https://spikehd.github.io/shelter-plugins/dorion-streamer-mode/',
'Dorion Updater':
'https://spikehd.github.io/shelter-plugins/dorion-updater/',
'Dorion PTT': 'https://spikehd.github.io/shelter-plugins/dorion-ptt/',
// 'Dorion PTT': 'https://spikehd.github.io/shelter-plugins/dorion-ptt/',
'Dorion Tray': 'https://spikehd.github.io/shelter-plugins/dorion-tray/',
'Dorion Fullscreen':
'https://spikehd.github.io/shelter-plugins/dorion-fullscreen/',
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/functionality/keyboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ pub fn js_keycode_to_key(keycode: String) -> Option<Keycode> {
"MetaRight" => Some(Keycode::RMeta),

// TODO fix for PTT since it uses a slightly different system that doesn't differentiate
"Contol" => Some(Keycode::LControl),
"Control" => Some(Keycode::LControl),
"Shift" => Some(Keycode::LShift),
"Alt" => Some(Keycode::LAlt),
"Meta" => Some(Keycode::LMeta),
Expand Down

0 comments on commit 35920bf

Please sign in to comment.