diff options
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |