chore(ui): Removed unused DeviceSettingState

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-21 17:43:36 -05:00
parent b91a995918
commit 8479c24290
No known key found for this signature in database
GPG Key ID: 583A6AF2D6AE1DC6
1 changed files with 0 additions and 11 deletions

View File

@ -344,17 +344,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;