From 4e58ca76a41672bea7e2d7a2ca08692b6478bc74 Mon Sep 17 00:00:00 2001 From: Mark Roszko Date: Wed, 4 Feb 2026 18:36:11 -0500 Subject: [PATCH] Hide the spacemouse panel for non-linux Space mouse is configured in the 3dconnexion app on Windows/macos --- common/eda_base_frame.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/eda_base_frame.cpp b/common/eda_base_frame.cpp index 5f7fe0b2b5..16326efcaf 100644 --- a/common/eda_base_frame.cpp +++ b/common/eda_base_frame.cpp @@ -1367,11 +1367,13 @@ void EDA_BASE_FRAME::ShowPreferences( wxString aStartPage, wxString aStartParent return new PANEL_MOUSE_SETTINGS( aParent ); }, _( "Mouse and Touchpad" ) ); +#ifdef __linux__ book->AddLazyPage( [] ( wxWindow* aParent ) -> wxWindow* { return new PANEL_SPACEMOUSE( aParent ); }, _( "SpaceMouse" ) ); +#endif book->AddPage( hotkeysPanel, _( "Hotkeys" ) );