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

Unified Diff: Source/devtools/front_end/ui_lazy/OverviewGrid.js

Issue 1097163004: DevTools: zoom frames upon double click, iterate over frames using arrows. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: Source/devtools/front_end/ui_lazy/OverviewGrid.js
diff --git a/Source/devtools/front_end/ui_lazy/OverviewGrid.js b/Source/devtools/front_end/ui_lazy/OverviewGrid.js
index 7bb9deabdff2efbea97b87849d7d877a49fd14a7..f623edecbe0150cf19c09d93d498f2a6d4d6677e 100644
--- a/Source/devtools/front_end/ui_lazy/OverviewGrid.js
+++ b/Source/devtools/front_end/ui_lazy/OverviewGrid.js
@@ -386,6 +386,9 @@ WebInspector.OverviewGrid.Window.prototype = {
right = ((windowRight + windowLeft) + width * factor) / 2;
}
+ if (windowLeft === this.windowLeft && windowRight === this.windowRight)
+ return;
+
this.windowLeft = windowLeft;
this._leftResizeElement.style.left = left * 100 + "%";
this.windowRight = windowRight;
« Source/devtools/front_end/ui/Dialog.js ('K') | « Source/devtools/front_end/ui/Dialog.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698