Vladimir Ein

Results 304 comments of Vladimir Ein

If I remember correctly, the links are created by your own code, not by DPG. That's where you can check if the new link creates a loop and delete old...

Please don't click the link in the notification you received for the previous comment. It's a scam.

> all table content outside the original view doesn't render. This is due to a bug in Dear ImGui, which means there's no easy fix on the DPG side. See...

> I tried to make a screen layout showing multiple tables next to each other (with scroll bars in case the window can not fit everything) Add the following to...

Unfortunately DPG only supports a single viewport. Deep inside, it stores the viewport in a global variable, so there can be only one viewport per process. You can use multiple...

Take a look at this comment: https://github.com/hoffstadt/DearPyGui/issues/2261#issuecomment-1904205762

Take a look at [demo.py](https://github.com/hoffstadt/DearPyGui/blob/4eae7e22bf9b5b87accb410178cd46d71ae99617/dearpygui/demo.py#L2045), I believe it shows how to use all of them. And here's how to run it (it's mentioned in the Readme at the project home...

To get a brief description of how to use drag and drop, [run the demo](https://github.com/hoffstadt/DearPyGui/?tab=readme-ov-file#demo) and expand the "Drag & Drop" section and further the "Help" sub-section. Then, as @nvglucifer...

`drop_callback` will be called when you drop something on that widget. In the example above, if you drag "but2" onto "but1" and drop it there, you'll see "run?" in the...

Good catch! Looks like a bug in `mvNodeEditor::onChildRemoved`: the function is trying to remove node links while it is iterating over the list of those node links :joy: (`childslots[0]`). It...