conditionally compile register and unregister of context menu options

macos-click-through
keith 4 years ago
parent aeda4ad2df
commit d85fc62c4d

@ -35,7 +35,8 @@ impl Handler for NeovimHandler {
SETTINGS.handle_changed_notification(arguments); SETTINGS.handle_changed_notification(arguments);
} }
"neovide.register_right_click" => { "neovide.register_right_click" => {
if cfg!(windows) { #[cfg(windows)]
{
if unregister_rightclick() { if unregister_rightclick() {
error!("Setup of Windows Registry failed during unregister. Try running as Admin?"); error!("Setup of Windows Registry failed during unregister. Try running as Admin?");
} }
@ -48,8 +49,11 @@ impl Handler for NeovimHandler {
} }
} }
"neovide.unregister_right_click" => { "neovide.unregister_right_click" => {
if cfg!(windows) && !unregister_rightclick() { #[cfg(windows)]
error!("Removal of Windows Registry failed, probably no Admin"); {
if !unregister_rightclick() {
error!("Removal of Windows Registry failed, probably no Admin");
}
} }
} }
_ => {} _ => {}

Loading…
Cancel
Save