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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js

Issue 2435593005: [Devtools] Fixed bug with _visibleColumns not set (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
index bf7a209cc09c5da8088e34f5977df07767774868..dd36b68cf14f4723147c7b634744bc9c69077c41 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
@@ -664,6 +664,8 @@ WebInspector.NetworkLogView.prototype = {
if (!node)
continue;
var isFilteredOut = !this._applyFilter(node);
+ if (isFilteredOut && node === this._hoveredNode)
+ this._hoveredNode = null;
if (node[WebInspector.NetworkLogView._isFilteredOutSymbol] !== isFilteredOut) {
if (!node[WebInspector.NetworkLogView._isFilteredOutSymbol])
rootNode.removeChild(node);
@@ -715,6 +717,8 @@ WebInspector.NetworkLogView.prototype = {
this._columns.reset();
+ this._hoveredNode = null;
+
this._timeFilter = null;
this._calculator.reset();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698