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

Unified Diff: Source/core/inspector/InspectorOverlayPage.html

Issue 14862010: DevTools: minor UI tweaks in the settings UI. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Source/devtools/front_end/Settings.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorOverlayPage.html
diff --git a/Source/core/inspector/InspectorOverlayPage.html b/Source/core/inspector/InspectorOverlayPage.html
index 503aeb4d3dff2c84cbbfab696b76032fb6459970..965c845d23591b6581147b205ef9ec3a44bb8333 100644
--- a/Source/core/inspector/InspectorOverlayPage.html
+++ b/Source/core/inspector/InspectorOverlayPage.html
@@ -354,12 +354,10 @@ function drawViewSize()
var frameWidth = frameViewFullSize.width || canvasWidth;
var textWidth = context.measureText(text).width;
context.fillStyle = gridBackgroundColor;
- context.fillRect(frameWidth - textWidth - 12, 15, frameWidth, 25);
+ context.fillRect(frameWidth - textWidth - 12, 0, frameWidth, 25);
context.fillStyle = darkGridColor;
- context.fillText(text, frameWidth - textWidth - 6, 33);
+ context.fillText(text, frameWidth - textWidth - 6, 18);
context.restore();
-
- _drawGrid(false, false);
}
function reset(resetData)
« no previous file with comments | « no previous file | Source/devtools/front_end/Settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698