1
0
Fork 0

Fix: Viewport drag tooltip flickering when dragging outside window

pull/8975/head
Jonathan G Rennison 2021-04-05 12:13:56 +01:00 committed by Michael Lutz
parent 1529403584
commit ae94b2d296
1 changed files with 1 additions and 1 deletions

View File

@ -782,7 +782,7 @@ void GuiShowTooltips(Window *parent, StringID str, uint paramcount, const uint64
{ {
DeleteWindowById(WC_TOOLTIPS, 0); DeleteWindowById(WC_TOOLTIPS, 0);
if (str == STR_NULL) return; if (str == STR_NULL || !_cursor.in_window) return;
new TooltipsWindow(parent, str, paramcount, params, close_tooltip); new TooltipsWindow(parent, str, paramcount, params, close_tooltip);
} }