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

Unified Diff: Source/devtools/front_end/timeline/TimelinePanel.js

Issue 1176343002: DevTools: make toolbar button click targets square (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed Created 5 years, 6 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 | « Source/devtools/front_end/sources/uiList.css ('k') | Source/devtools/front_end/timeline/timelinePanel.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/Source/devtools/front_end/timeline/TimelinePanel.js b/Source/devtools/front_end/timeline/TimelinePanel.js
index 0465f834943cbd37941195edaaf77aaa7334621d..c532a9ac9bc3a17dbb8c645ff1dc34fd2ea07b1c 100644
--- a/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -311,6 +311,7 @@ WebInspector.TimelinePanel.prototype = {
var clearButton = new WebInspector.ToolbarButton(WebInspector.UIString("Clear recording"), "clear-toolbar-item");
clearButton.addEventListener("click", this._onClearButtonClick, this);
this._panelToolbar.appendToolbarItem(clearButton);
+ this._panelToolbar.appendSeparator();
this._filterBar = this._createFilterBar();
this._panelToolbar.appendToolbarItem(this._filterBar.filterButton());
@@ -318,6 +319,7 @@ WebInspector.TimelinePanel.prototype = {
var garbageCollectButton = new WebInspector.ToolbarButton(WebInspector.UIString("Collect garbage"), "garbage-collect-toolbar-item");
garbageCollectButton.addEventListener("click", this._garbageCollectButtonClicked, this);
this._panelToolbar.appendToolbarItem(garbageCollectButton);
+ this._panelToolbar.appendSeparator();
var viewModeLabel = new WebInspector.ToolbarText(WebInspector.UIString("View:"), "toolbar-group-label");
this._panelToolbar.appendToolbarItem(viewModeLabel);
@@ -329,6 +331,7 @@ WebInspector.TimelinePanel.prototype = {
this._flameChartToggleButton = new WebInspector.ToolbarSettingToggle(this._flameChartEnabledSetting, "flame-chart-toolbar-item", WebInspector.UIString("Flame chart view. (Use WASD or time selection to navigate)"));
this._panelToolbar.appendToolbarItem(this._flameChartToggleButton);
+ this._panelToolbar.appendSeparator();
var captureSettingsLabel = new WebInspector.ToolbarText(WebInspector.UIString("Capture:"), "toolbar-group-label");
this._panelToolbar.appendToolbarItem(captureSettingsLabel);
« no previous file with comments | « Source/devtools/front_end/sources/uiList.css ('k') | Source/devtools/front_end/timeline/timelinePanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698