From fdd3026e30888f138b08ba12fc483b552cb6c2d2 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Wed, 17 Apr 2019 17:03:37 +0200 Subject: [PATCH] Fix using a non-existing argument --- plugins/ezoom/src/ezoom.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ezoom/src/ezoom.cpp b/plugins/ezoom/src/ezoom.cpp index 1be176234..aa2c0a4bb 100755 --- a/plugins/ezoom/src/ezoom.cpp +++ b/plugins/ezoom/src/ezoom.cpp @@ -1318,7 +1318,7 @@ EZoomScreen::updateFocusPosition (const CompRect &rect) bool EZoomScreen::restoreLastNonNotificationPosition () { - setCenter (pointBeforeNotification.x (), pointBeforeNotification.y (), false, true); + setCenter (pointBeforeNotification.x (), pointBeforeNotification.y (), false); return false; } @@ -1345,7 +1345,7 @@ EZoomScreen::updateNotificationPosition (const CompRect &rect) if (rect.height () > zoom_area_height) { pos_y -= (rect.height () - zoom_area_height) / 2; } - setCenter (pos_x, pos_y, false, true); + setCenter (pos_x, pos_y, false); nonMouseFocusTracking = true; lastNotificationChange = getTime (); -- GitLab