summaryrefslogtreecommitdiff
path: root/render/html_interaction.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-06-24 13:04:05 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-06-24 13:04:05 +0000
commit92323b780817d5c640837876c83ce278e1014e32 (patch)
tree3c2c6d3d255b71935aa63ff4ae73e22f1c853c0c /render/html_interaction.c
parent2fb134bac7d0ef2f204ee2fe61df690b234d6cde (diff)
downloadnetsurf-92323b780817d5c640837876c83ce278e1014e32.tar.gz
netsurf-92323b780817d5c640837876c83ce278e1014e32.tar.bz2
Code style fix. Thanks Kinnison.
svn path=/trunk/netsurf/; revision=12504
Diffstat (limited to 'render/html_interaction.c')
-rw-r--r--render/html_interaction.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/html_interaction.c b/render/html_interaction.c
index 7373a25fd..834181cdc 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -471,8 +471,8 @@ void html_mouse_action(struct content *c, struct browser_window *bw,
} else if (iframe) {
int pos_x, pos_y;
browser_window_get_position(iframe, false, &pos_x, &pos_y);
- pos_x /= bw-> scale;
- pos_y /= bw-> scale;
+ pos_x /= bw->scale;
+ pos_y /= bw->scale;
if (mouse & BROWSER_MOUSE_CLICK_1 ||
mouse & BROWSER_MOUSE_CLICK_2) {