summaryrefslogtreecommitdiff
path: root/atari
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-12-04 01:36:34 +0100
committerOle Loots <ole@monochrom.net>2012-12-04 01:36:34 +0100
commit16812b0522a94adf22b868d303cbecb706af06cd (patch)
treeecc95b31c262c0fe48b58c8fd4ab613d1b2dff2c /atari
parentf4ea103657f79f3ddf111789d8be98fcab5a54e0 (diff)
downloadnetsurf-16812b0522a94adf22b868d303cbecb706af06cd.tar.gz
netsurf-16812b0522a94adf22b868d303cbecb706af06cd.tar.bz2
Removed debug statements.
Diffstat (limited to 'atari')
-rwxr-xr-xatari/rootwin.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/atari/rootwin.c b/atari/rootwin.c
index 056a85d75..7da38d6a0 100755
--- a/atari/rootwin.c
+++ b/atari/rootwin.c
@@ -741,7 +741,6 @@ static bool on_content_mouse_click(ROOTWIN *rootwin)
rel_cur_x + slid->x_pos * slid->x_unit_px,
rel_cur_y + slid->y_pos * slid->y_unit_px);
do {
- printf("rel click coords: %d,%d\n", rel_cur_x, rel_cur_y);
// only consider movements of 5px or more as drag...:
if( abs(prev_x-rel_cur_x) > 5 || abs(prev_y-rel_cur_y) > 5 ) {
browser_window_mouse_track( gw->browser->bw,
@@ -751,10 +750,8 @@ static bool on_content_mouse_click(ROOTWIN *rootwin)
prev_x = rel_cur_x;
prev_y = rel_cur_y;
dragmode = true;
- printf("now dragmode is true...\n");
} else {
if( dragmode == false ) {
- printf("dragmode = false\n");
browser_window_mouse_track( gw->browser->bw,BROWSER_MOUSE_PRESS_1,
rel_cur_x + slid->x_pos * slid->x_unit_px,
rel_cur_y + slid->y_pos * slid->y_unit_px);