Illu

Results 12 comments of Illu

V 1.6.2 Fixed; ```python import dearpygui.dearpygui as dpg dpg.create_context() dpg.create_viewport(title='Custom Title', width=400, height=400, decorated=False) dpg.setup_dearpygui() with dpg.window(label="tutorial") as main_window: dpg.add_button(label="Press me") dpg.add_text('............................................................................................................................................................') dpg.set_primary_window(main_window, True) dpg.show_viewport() dpg.start_dearpygui() dpg.destroy_context() ``` Bug should...

On Windows it works with the render_loop method: ```python import dearpygui.dearpygui as dpg dpg.create_context() dpg.create_viewport() # here happens the DPG magic :) dpg.setup_dearpygui() dpg.show_viewport() while dpg.is_dearpygui_running(): dpg.render_dearpygui_frame() else: dpg.destroy_context() a...

We will focus on that before the next release happens !

The wheels are right now just avaiable for Python 3.8 & 3.9 More will come in the next days/weeks

What do you have for a output if you type: ```python pip show dearpygui ``` and ```python pip debug ```

Hey @my1e5 I can reproduce it and yes it isn't quite correct. Should be fixed in the next release.

Btw that is how it looks now: ![grafik](https://user-images.githubusercontent.com/52736876/204790475-3ee64115-42e4-4fb1-a802-eacc5f00de6c.png) ![grafik](https://user-images.githubusercontent.com/52736876/204790499-f68bc7b9-e306-4777-bfe7-3ce9cf465ce3.png) So also verified with my own and pilots project, and it looks good to me