summaryrefslogtreecommitdiff
path: root/desktop/browser.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/browser.c')
-rw-r--r--desktop/browser.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index 124821ff2..80c84a16a 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -557,8 +557,11 @@ bool browser_window_scroll_at_point(struct browser_window *bw,
}
}
- /* TODO:
- * Pass scroll to content to try scrolling something at this point */
+ /* Try to scroll any current content */
+ if (bw->current_content != NULL && content_scroll_at_point(
+ bw->current_content, x, y, scrx, scry) == true)
+ /* Scroll handled by current content */
+ return true;
/* Try to scroll this window, if scroll not already handled */
if (handled_scroll == false) {