Changeset - r25133:4a1127d92c6e
[Not reviewed]
master
0 1 0
Jonathan G Rennison - 3 years ago 2021-04-05 11:13:56
j.g.rennison@gmail.com
Fix: Viewport drag tooltip flickering when dragging outside window
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/misc_gui.cpp
Show inline comments
 
@@ -782,7 +782,7 @@ void GuiShowTooltips(Window *parent, Str
 
{
 
	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);
 
}
0 comments (0 inline, 0 general)