nvglucifer
nvglucifer
Ah, it's really that `drag_line` disturbs the showing of buttons. I've tested that DPG 1.11.1 showing fine, but not DPG2.0. I will investigate and report the different here, not sure...
https://github.com/hoffstadt/DearPyGui/blob/65c26203a7c474635c1cb403daf1a4c66109ffa5/src/mvPlotting.cpp#L502-L513
Temporary workaround for DPG 2.0 is toggle hide all drag items like using checkbox's callback above (after that you can right click legend to show buttons). ```python # Here's some...
Likely that DPG 2.0 duplicate series items for each drag item - different hide/show each combination. (color map change when check the checkbox). 2 series + 2 drag item can...
Not quiet a nice-to-have or a must-have. It adds more overhead, functions call, __doc__ ... I tried, creating 10,000 TextBoxComp is 4 times slower than ```python for x in range(10000):...
you can `pip install dearpygui` after `conda activate your_environment_name`. https://www.reddit.com/r/Python/comments/w564g0/comment/ih7jo6v/
DPG import these library in its dearpygui.py file: typing, contextlib, warnings, functools, inspect. I think it won't mess up the conda env or even not depend on other python libs.
Hi, Please follow the "issue template" when create new issue. You need to explain more, what are "numerous cases"; your minimal code that reproduce the issue.
```python import dearpygui.dearpygui as dpg dpg.create_context() dpg.create_viewport() dpg.setup_dearpygui() dpg.show_viewport() def custom_tooltip_moving(s, a, u, tooltip): parent = dpg.get_item_parent(s) childrens = dpg.get_item_children(parent, slot=1) if childrens[-1] == s: dpg.move_item(tooltip, parent=parent) else: dpg.move_item(tooltip, parent=parent,...
```python import dearpygui.dearpygui as dpg dpg.create_context() dpg.create_viewport() dpg.setup_dearpygui() dpg.show_viewport() def custom_tooltip_moving(s, a, u, tooltip): parent = dpg.get_item_parent(s) childrens = dpg.get_item_children(parent, slot=1) if childrens[-1] == s: dpg.move_item(tooltip, parent=parent) else: next_item =...