move paste method and clipboard handling to advanced
This commit is contained in:
parent
3860cdd9e0
commit
f6e315786c
2 changed files with 4 additions and 4 deletions
|
|
@ -6,6 +6,8 @@ import { CustomWords } from "./CustomWords";
|
|||
import { SettingsGroup } from "../ui/SettingsGroup";
|
||||
import { StartHidden } from "./StartHidden";
|
||||
import { AutostartToggle } from "./AutostartToggle";
|
||||
import { PasteMethodSetting } from "./PasteMethod";
|
||||
import { ClipboardHandlingSetting } from "./ClipboardHandling";
|
||||
|
||||
export const AdvancedSettings: React.FC = () => {
|
||||
return (
|
||||
|
|
@ -14,6 +16,8 @@ export const AdvancedSettings: React.FC = () => {
|
|||
<StartHidden descriptionMode="tooltip" grouped={true} />
|
||||
<AutostartToggle descriptionMode="tooltip" grouped={true} />
|
||||
<ShowOverlay descriptionMode="tooltip" grouped={true} />
|
||||
<PasteMethodSetting descriptionMode="tooltip" grouped={true} />
|
||||
<ClipboardHandlingSetting descriptionMode="tooltip" grouped={true} />
|
||||
<TranslateToEnglish descriptionMode="tooltip" grouped={true} />
|
||||
<ModelUnloadTimeoutSetting descriptionMode="tooltip" grouped={true} />
|
||||
<CustomWords descriptionMode="tooltip" grouped />
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@ import React from "react";
|
|||
import { WordCorrectionThreshold } from "./debug/WordCorrectionThreshold";
|
||||
import { SettingsGroup } from "../ui/SettingsGroup";
|
||||
import { HistoryLimit } from "./HistoryLimit";
|
||||
import { PasteMethodSetting } from "./PasteMethod";
|
||||
import { ClipboardHandlingSetting } from "./ClipboardHandling";
|
||||
import { AlwaysOnMicrophone } from "./AlwaysOnMicrophone";
|
||||
import { SoundPicker } from "./SoundPicker";
|
||||
import { MuteWhileRecording } from "./MuteWhileRecording";
|
||||
|
|
@ -12,8 +10,6 @@ export const DebugSettings: React.FC = () => {
|
|||
return (
|
||||
<div className="max-w-3xl w-full mx-auto space-y-6">
|
||||
<SettingsGroup title="Debug">
|
||||
<PasteMethodSetting descriptionMode="tooltip" grouped={true} />
|
||||
<ClipboardHandlingSetting descriptionMode="tooltip" grouped={true} />
|
||||
<SoundPicker
|
||||
label="Sound Theme"
|
||||
description="Choose a sound theme for recording start and stop feedback"
|
||||
|
|
|
|||
Loading…
Reference in a new issue