Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js

Issue 2834053004: DevTools: Fix timeline overview flickering (Closed)
Patch Set: addressing comment Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
index 7f114a2d93af93d86495dea7cfeee49d66dc775f..d2d831687423820b9c2657c6cf241453dc47f02f 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
@@ -96,7 +96,7 @@ UI.DragHandler = class {
this._glassPaneInUse = true;
if (!UI.DragHandler._glassPaneUsageCount++) {
UI.DragHandler._glassPane = new UI.GlassPane();
- UI.DragHandler._glassPane.setBlockPointerEvents(true);
+ UI.DragHandler._glassPane.setPointerEventsBehavior(UI.GlassPane.PointerEventsBehavior.BlockedByGlassPane);
UI.DragHandler._glassPane.show(UI.DragHandler._documentForMouseOut);
}
}

Powered by Google App Engine
This is Rietveld 408576698