From e2d795543754890b35f4f25165beec30f630533d Mon Sep 17 00:00:00 2001 From: Haroon Qureshi Date: Tue, 30 Jun 2026 11:17:29 -0700 Subject: [PATCH] Enable status bar by default for python studio. PiperOrigin-RevId: 940557724 Change-Id: I0a4c96a53a0bcfcb5677515705c874d12bfd300d --- python/mujoco/experimental/studio/ux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mujoco/experimental/studio/ux.cc b/python/mujoco/experimental/studio/ux.cc index 6fc0d1d9..2f5a1dc1 100644 --- a/python/mujoco/experimental/studio/ux.cc +++ b/python/mujoco/experimental/studio/ux.cc @@ -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) "