summaryrefslogtreecommitdiff
path: root/src/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 5658e6887..5c9eeb7f5 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -383,12 +383,15 @@ static void DispatchLeftClickEvent(Window *w, int x, int y, int click_count)
static void DispatchRightClickEvent(Window *w, int x, int y)
{
NWidgetCore *wid = w->nested_root->GetWidgetFromPos(x, y);
+ if (wid == NULL) return;
/* No widget to handle, or the window is not interested in it. */
- if (wid == NULL || wid->index < 0) return;
+ if (wid->index >= 0) {
+ Point pt = { x, y };
+ if (w->OnRightClick(pt, wid->index)) return;
+ }
- Point pt = { x, y };
- w->OnRightClick(pt, wid->index);
+ if (_settings_client.gui.hover_delay == 0 && wid->tool_tip != 0) GuiShowTooltips(wid->tool_tip, 0, NULL, TCC_RIGHT_CLICK);
}
/**