Skip to content
This repository has been archived by the owner on Jun 4, 2022. It is now read-only.

Commit

Permalink
Fix regression on middle click to open in new tab.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Cochrane committed Jan 2, 2018
1 parent ea4d602 commit 42f11c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Traits/decorate/AutoScroll.vala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace Odysseus.Traits {
web.run_javascript.begin(js, null);
return autoscroll_active;
});
return true;
return false;
});

web.motion_notify_event.connect((evt) => {
Expand All @@ -52,7 +52,7 @@ namespace Odysseus.Traits {

web.get_window().set_cursor(null);
autoscroll_active = false;
return true;
return false;
});
}
}

0 comments on commit 42f11c5

Please sign in to comment.