DearPyGui
DearPyGui copied to clipboard
[Bug] menu_bar not rendered in v1.6.3 source build
Version of Dear PyGui
Version: 1.6.3 source build 13b39aa251ee3bd7f0701dc6f5ea5ecc73954db4 Operating System: Win10 x64
My Issue/Question
dpg.menu_bar created under a dpg.window is not rendered.
Not sure which commit caused it. The dpg v.1.6.2 release version runs fine.
To Reproduce
Steps to reproduce the behavior:
- Build and install commit 13b39aa251ee3bd7f0701dc6f5ea5ecc73954db4
- Run verifiable example
Expected behavior
dpg.menu_bar created under a dpg.window should be rendered
Screenshots/Video
v1.6.3 Source build
v.1.6.2 Release
Standalone, minimal, complete and verifiable example
# Here's some code anyone can copy and paste to reproduce your issue
import dearpygui.dearpygui as dpg
dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()
with dpg.window(label="tutorial"):
with dpg.menu_bar(label = 'Main Menu'):
with dpg.menu(label = 'File'):
pass
dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
Is it reproduced by any dev or it is not reproduced?
can agree on that bug
I have the same issue using the recently released v1.7.
Buggy:
Expected:
Unrelated, the default_open=True
from collapsing_header
is also not respected.
This has been fixed.