[tor-commits] [tor-browser] 60/76: Bug 1758357 - Fix PuppetWidget::SetCursor to avoid sending cursor updates to the parent process over and over. r=mstange, a=RyanVM

gitolite role git at cupani.torproject.org
Wed Mar 30 20:40:28 UTC 2022


This is an automated email from the git hooks/post-receive script.

richard pushed a commit to branch tor-browser-91.8.0esr-11.0-1
in repository tor-browser.

commit f2150f3c1b49b3e6e00245312e1e8762be58579e
Author: Emilio Cobos Álvarez <emilio at crisal.io>
AuthorDate: Wed Mar 23 15:31:02 2022 +0000

    Bug 1758357 - Fix PuppetWidget::SetCursor to avoid sending cursor updates to the parent process over and over. r=mstange, a=RyanVM
    
    I accidentally regressed this in bug 1705877, so we'd always
    force-update the cursor :(
    
    Differential Revision: https://phabricator.services.mozilla.com/D141863
---
 widget/PuppetWidget.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/widget/PuppetWidget.cpp b/widget/PuppetWidget.cpp
index 4886d047ffa7b..c36262392d7bc 100644
--- a/widget/PuppetWidget.cpp
+++ b/widget/PuppetWidget.cpp
@@ -968,6 +968,7 @@ void PuppetWidget::SetCursor(const Cursor& aCursor) {
     return;
   }
   mCursor = aCursor;
+  mUpdateCursor = false;
 }
 
 void PuppetWidget::SetChild(PuppetWidget* aChild) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the tor-commits mailing list