Skip to content
Open
Changes from all commits
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
1 change: 0 additions & 1 deletion apps/desktop/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use ext::*;
use store::*;

use tauri::Manager;
use tauri_plugin_permissions::{Permission, PermissionsPluginExt};
use tauri_plugin_windows::{AppWindow, WindowsPluginExt};

Expand Down Expand Up @@ -267,8 +266,8 @@
{
let handle = app.handle().clone();
hypr_intercept::set_close_handler(move || {
for (_, window) in handle.webview_windows() {

Check failure on line 269 in apps/desktop/src-tauri/src/lib.rs

View workflow job for this annotation

GitHub Actions / desktop_ci (macos, depot-macos-15)

no method named `webview_windows` found for struct `AppHandle<R>` in the current scope
let _ = window.close();

Check failure on line 270 in apps/desktop/src-tauri/src/lib.rs

View workflow job for this annotation

GitHub Actions / desktop_ci (macos, depot-macos-15)

type annotations needed
}
let _ = handle.set_activation_policy(tauri::ActivationPolicy::Accessory);
});
Expand All @@ -288,8 +287,8 @@

api.prevent_exit();

for (_, window) in app.webview_windows() {

Check failure on line 290 in apps/desktop/src-tauri/src/lib.rs

View workflow job for this annotation

GitHub Actions / desktop_ci (macos, depot-macos-15)

no method named `webview_windows` found for reference `&AppHandle` in the current scope
let _ = window.close();

Check failure on line 291 in apps/desktop/src-tauri/src/lib.rs

View workflow job for this annotation

GitHub Actions / desktop_ci (macos, depot-macos-15)

type annotations needed
}

let _ = app.set_activation_policy(tauri::ActivationPolicy::Accessory);
Expand Down
Loading