Vladimir Ein
Vladimir Ein
If you want to have individual handlers for nodes, you'll have to dispatch events to local handlers on your own. Here's the problem: a local `item_clicked` handler only fires when...
The global handler receives all clicks and therefore is able to determine the moment when the popup closes and the click is on a node widget.
The way it's currently implemented in DPG, every widget requires its own implementation of "set/get scroll" functions. Nobody has ever implemented it for listboxes. I have a fix that might...
This error occurs because DPG tries to interpret a UTF-8 string as an ANSI string. Unfortunately there's no workaround because further in the code, the same string is treated as...
Just curious, why are you closing it as completed? I believe the issue still exists and needs a fix.
DPG cannot really convert Python objects to strings when the listbox is rendered (because it doesn't hold GIL at that point). This means Python objects would have to be converted...
Depending on the use case, you might want for text to actually keep its orientation regardless of rotation :joy: (e.g. text labels). So there should probably be an option to...
Honestly, I wouldn't count on it. DPG is in maintenance mode and no new features are expected. You (or anyone else for that matter) could implement it on your own,...
If you want to rotate the image itself, you need `draw_image_quad`, but it doesn't really work: #2121. There's a pull request that's expected to fix that issue, but it's been...
And, yes, `draw_image` contents doesn't get rotated.