Commit 51cfcff5 authored by oahmednv's avatar oahmednv Committed by Kelly Guo

Fixes typo in /physics/autoPopupSimulationOutputWindow setting (#249)

…aclab.sim.SimulationContext

fixed typo in /physics/autoPopupSimulationOutputWindow setting in
isaaclab.sim.SimulationContext

- Bug fix (non-breaking change which fixes an issue)

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [x] I have added tests that prove my fix is effective or that my
feature works
- [x] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

<!--
As you go through the checklist above, you can mark something as done by
putting an x character in it

For example,
- [x] I have done this task
- [ ] I have not done this task
-->
parent 5a2d2687
[package] [package]
# Note: Semantic Versioning is used: https://semver.org/ # Note: Semantic Versioning is used: https://semver.org/
version = "0.33.9" version = "0.33.10"
# Description # Description
title = "Isaac Lab framework for Robot Learning" title = "Isaac Lab framework for Robot Learning"
......
Changelog Changelog
--------- ---------
0.33.9 (2025-01-30) 0.33.10 (2025-01-30)
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Fixed Fixed
^^^^^ ^^^^^
...@@ -12,6 +12,15 @@ Fixed ...@@ -12,6 +12,15 @@ Fixed
to the event being triggered at the wrong time after the reset. to the event being triggered at the wrong time after the reset.
0.33.9 (2025-01-22)
~~~~~~~~~~~~~~~~~~~
Fixed
^^^^^
* Fixed typo in /physics/autoPopupSimulationOutputWindow setting in :class:`~isaaclab.sim.SimulationContext`
0.33.8 (2025-01-17) 0.33.8 (2025-01-17)
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
......
...@@ -140,7 +140,7 @@ class SimulationContext(_SimulationContext): ...@@ -140,7 +140,7 @@ class SimulationContext(_SimulationContext):
carb_settings_iface.set_bool("/physics/collisionConeCustomGeometry", False) carb_settings_iface.set_bool("/physics/collisionConeCustomGeometry", False)
carb_settings_iface.set_bool("/physics/collisionCylinderCustomGeometry", False) carb_settings_iface.set_bool("/physics/collisionCylinderCustomGeometry", False)
# hide the Simulation Settings window # hide the Simulation Settings window
carb_settings_iface.set_bool("/physis/autoPopupSimulationOutputWindow", False) carb_settings_iface.set_bool("/physics/autoPopupSimulationOutputWindow", False)
# note: we read this once since it is not expected to change during runtime # note: we read this once since it is not expected to change during runtime
# read flag for whether a local GUI is enabled # read flag for whether a local GUI is enabled
self._local_gui = carb_settings_iface.get("/app/window/enabled") self._local_gui = carb_settings_iface.get("/app/window/enabled")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment