blob: cd42fd0299c0cfa09172afc1cbfe079c1b7940ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
use tauri::{plugin::Plugin, Manager, Runtime, Window};
pub struct PinchZoomDisablePlugin;
impl Default for PinchZoomDisablePlugin {
fn default() -> Self {
Self
}
}
impl<R: Runtime> Plugin<R> for PinchZoomDisablePlugin {
fn name(&self) -> &'static str {
"Does not matter here"
}
fn window_created(&mut self, window: Window<R>) {
let Some(webview_window) = window.get_webview_window(window.label()) else {
return;
};
let _ = webview_window.with_webview(|_webview| {
#[cfg(target_os = "linux")]
unsafe {
use gtk::glib::ObjectExt;
use gtk::GestureZoom;
use webkit2gtk::glib::gobject_ffi;
if let Some(data) = _webview.inner().data::<GestureZoom>("wk-view-zoom-gesture") {
gobject_ffi::g_signal_handlers_destroy(data.as_ptr().cast());
}
}
});
}
}
|