Enable status bar by default for python studio.

PiperOrigin-RevId: 940557724
Change-Id: I0a4c96a53a0bcfcb5677515705c874d12bfd300d
This commit is contained in:
Haroon Qureshi
2026-06-30 11:17:29 -07:00
committed by Copybara-Service
parent 7a84022092
commit e2d7955437
+1 -1
View File
@@ -107,7 +107,7 @@ PYBIND11_MODULE(ux, m) {
"configure_docking_layout",
[]() {
py::gil_scoped_release no_gil;
ImVec4 r = mujoco::platform::ConfigureDockingLayout();
ImVec4 r = mujoco::platform::ConfigureDockingLayout(true, true);
return std::make_tuple(r.x, r.y, r.z, r.w);
},
"Configure the docking layout with Options (left) and Inspector (right) "