disable mouse by default in buildroot profile

This commit is contained in:
Fabian
2025-08-19 18:50:13 -06:00
parent 9a2e81b35b
commit 7c6da9d8f2

View File

@@ -461,6 +461,7 @@ function onload()
name: "Buildroot Linux",
filesystem: {},
cmdline: "tsc=reliable mitigations=off random.trust_cpu=on",
mouse_disabled_default: true,
},
{
id: "buildroot6",
@@ -2345,6 +2346,11 @@ function init_ui(profile, settings, emulator)
$("toggle_mouse").blur();
};
if(profile?.mouse_disabled_default)
{
$("toggle_mouse").onclick();
}
var theatre_mode = false;
var theatre_ui = true;
var theatre_zoom_to_fit = false;