hoffstadt / hoffstadt/DearPyGui
Editor Drags while window clicked
- Dominant language
- C++
- Stars
- 15.6k
- Forks
- 783
- PR merge metrics
- No merged PRs in 30d
Description
## Version of Dear PyGui
Version: XXX
Operating System: XXX (Windows 10, macOs xx, Ubuntu 20.04, etc.)
## My Issue/Question

## Standalone, minimal, complete and verifiable example
```python
import dearpygui.dearpygui as dpg
from dearpygui.demo import show_demo
dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()
with dpg.window(label="Example Window") as main:
with dpg.node_editor():
node = dpg.add_node(use_internal_label=False, label="")
dpg.add_node_attribute(parent=node, category=dpg.mvNode_Attr_Output)
with dpg.window(label="nice", width=50, height=100):
dpg.add_text("hans")
dpg.set_primary_window(main, True)
dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
```
Contributor guide
Assessment
This issue has not been assessed yet.