DearPyGui icon indicating copy to clipboard operation
DearPyGui copied to clipboard

Tooltip of the nodes are smaller

Open QuattroMusic opened this issue 3 years ago • 0 comments

Version of Dear PyGui

Version: 1.6.1 Operating System: Windows 10

My Issue

The tooltip attached to an item of a node is smaller than one attached to an item of a window.

To Reproduce

See code

Screenshots

image image

Standalone, minimal, complete and verifiable example

import dearpygui.dearpygui as dpg

dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()

with dpg.window():
    dpg.add_text("Hi!")
    with dpg.tooltip(dpg.last_item()):
        dpg.add_text("Hello There!")

with dpg.window(pos=[200,100],width=200,height=200):
    with dpg.node_editor():
        with dpg.node():
            with dpg.node_attribute():
                dpg.add_text("Hi!")
                with dpg.tooltip(dpg.last_item()):
                    dpg.add_text("Hello There!")

dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()

QuattroMusic avatar May 06 '22 23:05 QuattroMusic