Vladimir Ein
Vladimir Ein
What kind of IDE is this? Can you run your application from the command line?
It definitely skips the diagnostics; theres should be either a console window in the IDE, or you can run it from command line and see full output there.
VS Code typically opens a Terminal panel at the bottom of the window, which is identical to CLI (you can even type commands there). Not sure if it's turned off...
The latter works fine for me. I've just tried it on an image within a node, and the popup does show up. Except that first time it's shown in the...
Well, since your global callback fires even if you click on the node, it shows the `popupTag` window in that case, too. Two popups can't be displayed at once. In...
I think it's because your global click handler opens a popup even if it is already displayed, where as `dpg.popup` uses the subsequent click to close the popup. Since you...
Maybe I misunderstood your problem with popup menus. I've just re-read it and I don't really get it what the problem is in step 4. For me, popups work just...
> could you right-click the node and directly right-click on node editor area and right-click once again on node ? Something like this?  > My question was how I...
Something like this?  ```py from pathlib import Path import dearpygui.dearpygui as dpg dpg.create_context() with dpg.window(popup=True, show=False, min_size=(0, 0)) as editor_popup: dpg.add_text("Editor popup") with dpg.window(popup=True, show=False, min_size=(0, 0)) as node_popup:...
All clicks in the video are right-clicks. A left-click will simply close the popup without bringing up a new one.