mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-23 21:51:02 +00:00
Move commandline input field down to prevent auto focus
This commit is contained in:
@@ -70,15 +70,6 @@ export class SettingsMenu extends React.Component<SettingsMenuProps, Settings> {
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-6">
|
||||
<Input
|
||||
id="settings-argv"
|
||||
placeholder="Command-Line Arguments"
|
||||
value={this.state.commandLine}
|
||||
onChange={(e) => this.updateArgv(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-6">
|
||||
<RadioGroup
|
||||
defaultValue="regular"
|
||||
@@ -223,6 +214,15 @@ export class SettingsMenu extends React.Component<SettingsMenuProps, Settings> {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-6">
|
||||
<Input
|
||||
id="settings-argv"
|
||||
placeholder="Command-Line Arguments"
|
||||
value={this.state.commandLine}
|
||||
onChange={(e) => this.updateArgv(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<Popover>
|
||||
<PopoverTrigger>
|
||||
<TextTooltip tooltip="Don't log executions of listed functions">
|
||||
|
||||
Reference in New Issue
Block a user