DearPyGui icon indicating copy to clipboard operation
DearPyGui copied to clipboard

Dragging the window edge out of the viewport lengthens the window

Open for-the-zero opened this issue 2 years ago • 0 comments

Version of Dear PyGui

Version: newest Operating System: win10 1909

My Issue/Question

When I drag the edge of the window outside the windows window, the window inside gets longer quickly

Screenshots/Video

https://github.com/hoffstadt/DearPyGui/assets/101497510/7fb52602-4b88-44da-96d2-0698e6ce8313

Standalone, minimal, complete and verifiable example

# Here's some code anyone can copy and paste to reproduce your issue
# well, this example also can make it
import dearpygui.dearpygui as dpg

dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()

with dpg.window(label="tutorial"):
    dpg.add_button(label="Press me")

more_code_to_explain_my_issue()

dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()

for-the-zero avatar Oct 22 '23 04:10 for-the-zero