diff options
-rw-r--r-- | support/hololens/ServoApp/BrowserPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/hololens/ServoApp/BrowserPage.cpp b/support/hololens/ServoApp/BrowserPage.cpp index afc07507d75..62b3b3a9a72 100644 --- a/support/hololens/ServoApp/BrowserPage.cpp +++ b/support/hololens/ServoApp/BrowserPage.cpp @@ -279,7 +279,7 @@ void BrowserPage::OnSurfaceManipulationDelta( auto y = e.Position().Y; auto dx = e.Delta().Translation.X; auto dy = e.Delta().Translation.Y; - RunOnGLThread([=] { mServo->Scroll(x, y, dx, dy); }); + RunOnGLThread([=] { mServo->Scroll(dx, dy, x, y); }); e.Handled(true); } |