aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index 1043ae9..4eed4a3 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -665,11 +665,11 @@ bool InputSystem::receive(const MainSDLEvent& event)
break;
case SDL_MOUSEBUTTONDOWN:
- ev.emit<MouseClickEvent>(mouse, e.button.button);
-
if (UISystem::isDialog() || pageTexReady) {
if ((e.button.button & SDL_BUTTON_RIGHT))
UISystem::advanceDialog();
+ } else {
+ ev.emit<MouseClickEvent>(mouse, e.button.button);
}
break;