You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note 1: Keyboard shortcut is working for opening Web Inspector on Windows, but when sending keyboard shortcut to close Inspector on Windows, nothing happens
Note 2: Keyboard shortcut works correctly on macos
Login with any user
Enable Developer Settings
Enable Developer Mode
Press Control + Shift + I - Web Inspector is opened
Again, press Control + Shift + I - Web Inspector is not closed
The text was updated successfully, but these errors were encountered:
/// Close the web inspector which is usually called dev tool.
///
/// ## Platform-specific
///
/// - Windows / Android / iOS: Not supported.
#[cfg(any(debug_assertions, feature = "devtools"))]
pub fn close_devtools(&self) {
self.webview.close_devtools();
}
/// Gets the devtool window's current visibility state.
///
/// ## Platform-specific
///
/// - Windows / Android / iOS: Not supported.
#[cfg(any(debug_assertions, feature = "devtools"))]
pub fn is_devtools_open(&self) -> bool {
self.webview.is_devtools_open()
}
Note 1: Keyboard shortcut is working for opening Web Inspector on Windows, but when sending keyboard shortcut to close Inspector on Windows, nothing happens
Note 2: Keyboard shortcut works correctly on macos
The text was updated successfully, but these errors were encountered: