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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js

Issue 2520003006: [Devtools] Fix hover issue with darktheme in network (Closed)
Patch Set: [Devtools] Fix hover issue with darktheme in network Created 4 years, 1 month 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_lazy/FlameChart.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js
index 4b22e6b6787b45c7ba1ed9c3123069e703118a77..bb92267fdcad15fd1cbb36bc162f8b9c89df09a0 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js
@@ -660,7 +660,8 @@ UI.FlameChart = class extends UI.ChartViewport {
context.restore();
- UI.TimelineGrid.drawCanvasGrid(context, this._calculator, 3);
+ const headerHeight = 15;
+ UI.TimelineGrid.drawCanvasGrid(context, this._calculator, 3, headerHeight);
this._drawMarkers();
this._drawGroupHeaders(width, height);

Powered by Google App Engine
This is Rietveld 408576698