summaryrefslogtreecommitdiff
path: root/src/window_gui.h
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-07-11 10:58:55 +0000
committerterkhen <terkhen@openttd.org>2010-07-11 10:58:55 +0000
commit10fbb87823dd689844c93ce8b0d43a5098acdba9 (patch)
treefb217ff4f1631792b62f9a9879b774af8f018c5f /src/window_gui.h
parent51e6cb0a70d0e4076a91305d308f3f467aa950df (diff)
downloadopenttd-10fbb87823dd689844c93ce8b0d43a5098acdba9.tar.xz
(svn r20120) -Feature [FS#3913]: Tooltips are shown by hovering the mouse over a widget instead of by right clicking on it.
Diffstat (limited to 'src/window_gui.h')
-rw-r--r--src/window_gui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window_gui.h b/src/window_gui.h
index 6a882647b..f25ebba08 100644
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -900,7 +900,7 @@ enum TooltipCloseCondition {
TCC_HOVER,
};
-void GuiShowTooltips(StringID str, uint paramcount = 0, const uint64 params[] = NULL, TooltipCloseCondition close_tooltip = TCC_RIGHT_CLICK);
+void GuiShowTooltips(StringID str, uint paramcount = 0, const uint64 params[] = NULL, TooltipCloseCondition close_tooltip = TCC_HOVER);
/* widget.cpp */
int GetWidgetFromPos(const Window *w, int x, int y);