Conditionally print access to executable memory

This commit is contained in:
momo5502
2025-06-30 21:21:59 +02:00
parent 965055b875
commit 6b6dcc9ce2
3 changed files with 72 additions and 49 deletions

View File

@@ -84,6 +84,17 @@ export class SettingsMenu extends React.Component<SettingsMenuProps, Settings> {
<Label htmlFor="settings-buffer">Buffer stdout</Label>
</div>
<div className="flex gap-6">
<Checkbox
id="settings-exec"
checked={this.state.execAccess}
onCheckedChange={(checked: boolean) => {
this.setState({ execAccess: checked });
}}
/>
<Label htmlFor="settings-exec">Log exec Memory Access</Label>
</div>
<div className="flex gap-6">
<Checkbox
id="settings-persist"