diff --git a/plugins/ezoom/src/ezoom.cpp b/plugins/ezoom/src/ezoom.cpp index 1be17623482499210a8dd603c5a506902d4a84d0..aa2c0a4bbffd59af8f6513299fdfc86e4eab571d 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 ();