my1e5

Results 24 comments of my1e5

> i managed to find that dpg.configure_app(docking=True) does activate docking mode and with that i can manually once the app is launched, build the desired layout, but i don't want...

This kind of configuration is typical of upmixer/downmixer plugins. In this case I'm trying to load an upmixer (developed in-house at my company for a research project) that takes in...

That's great to hear, I think it would definitely be a worthwhile addition. If you need something for testing I could create a simple upmixer plugin in JUCE that takes...

@psobot I created a basic upmixer VST3 plugin using JUCE - it takes in stereo and outputs left/right/centre. Code can be found here - https://github.com/my1e5/audio-plugins Also under Releases you can...

I'm also having this issue - using DPG 1.7.3. It seems to only happen to items+popups that were created before the app launches (i.e. created before dpg.start_dearpygui() is called).

There is still an issue with `decorated=False` and primary window on Windows 10 using DPG 1.8.0 ```python import dearpygui.dearpygui as dpg dpg.create_context() with dpg.window() as primary_window: dpg.add_text("Hello World") dpg.create_viewport(width=200, height=200,...

Looking back at this, I think the bug is actually that when you set `pos=(0,0)` the `x` coordinate is not applied properly. The `y` coordinate is actually faithfully set to...

I believe I've figured this out. It's to do with Imgui and the "default window clipping rectangle": > The default window clipping rectangle adds that spacing of WindowPadding.x*0.5f horizontally, and...

The [misc] error may be related to this discussion - https://github.com/python/mypy/issues/6172

Should I report the bug on Mypy's github?