chore(ui): Removed unused DeviceSettingState (#496)

Now that we don't do any mouse/trackpad sensitivity settings, this whole interface is unused.
This commit is contained in:
Marc Brooks 2025-05-25 07:19:31 -05:00 committed by GitHub
parent a28676cd94
commit 55d7f22c47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 11 deletions

View File

@ -358,17 +358,6 @@ export const useSettingsStore = create(
),
);
export interface DeviceSettingsState {
trackpadSensitivity: number;
mouseSensitivity: number;
clampMin: number;
clampMax: number;
blockDelay: number;
trackpadThreshold: number;
scrollSensitivity: "low" | "default" | "high";
setScrollSensitivity: (sensitivity: DeviceSettingsState["scrollSensitivity"]) => void;
}
export interface RemoteVirtualMediaState {
source: "WebRTC" | "HTTP" | "Storage" | null;
mode: "CDROM" | "Disk" | null;