1
0
Fork 0

Fix: Viewport drag tooltip flickering when dragging outside window

pull/9160/head
Jonathan G Rennison 2021-04-05 12:13:56 +01:00 committed by Charles Pigott
parent c6312a8ebf
commit 35aff633bd
1 changed files with 1 additions and 1 deletions

View File

@ -783,7 +783,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);
} }