Wrap ImGui::Begin/EndTooltip()

This commit is contained in:
Ollie Charles
2021-01-24 17:39:44 +00:00
parent 4ca9a3d38f
commit 3c3646a645
2 changed files with 25 additions and 1 deletions

View File

@ -48,7 +48,12 @@ loop w checked = do
True -> openPopup "Button Popup"
False -> return ()
beginPopupModal "Button Popup" >>= whenTrue do
isItemHovered >>= whenTrue do
beginTooltip
text "Tooltip?"
endTooltip
beginPopup "Button Popup" >>= whenTrue do
button "Close" >>= whenTrue closeCurrentPopup
endPopup