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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/Toolbar.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/Toolbar.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
index 8f36b24b98759c7ac45a84b8f71a32fc690e56d3..c8deeecc48bcfbe7b058dfca6385776a082aec3b 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
@@ -124,7 +124,7 @@ UI.Toolbar = class {
document.documentElement.addEventListener('mouseup', mouseUp, false);
var optionsGlassPane = new UI.GlassPane();
- optionsGlassPane.setBlockPointerEvents(true);
+ optionsGlassPane.setPointerEventsBehavior(UI.GlassPane.PointerEventsBehavior.BlockedByGlassPane);
optionsGlassPane.show(document);
var optionsBar = new UI.Toolbar('fill', optionsGlassPane.contentElement);
optionsBar._contentElement.classList.add('floating');

Powered by Google App Engine
This is Rietveld 408576698