fix: update keybind references to settings in app and tray setup

This commit is contained in:
PandaDEV 2025-01-01 17:43:46 +10:00
parent b3daaaa633
commit 6514abcdb3
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C
3 changed files with 6 additions and 8 deletions

View file

@ -10,15 +10,13 @@ import { app, window } from '@tauri-apps/api';
import { onMounted } from 'vue'
onMounted(async () => {
await listen('change_keybind', async () => {
console.log("change_keybind");
await listen('settings', async () => {
await navigateTo('/settings')
await app.show();
await window.getCurrentWindow().show();
})
await listen('main_route', async () => {
console.log("main_route");
await navigateTo('/')
})
})