Commit e2c11ea8 authored by lushnikov's avatar lushnikov Committed by Commit bot

DevTools: increase minimum size of the SourcesView

This will ensure that all the tab items have enough space.

BUG=674409
R=dgozman

Review-Url: https://codereview.chromium.org/2584643003
Cr-Commit-Position: refs/heads/master@{#439086}
parent f5c2fb3e
...@@ -15,7 +15,7 @@ Sources.SourcesView = class extends UI.VBox { ...@@ -15,7 +15,7 @@ Sources.SourcesView = class extends UI.VBox {
super(); super();
this.registerRequiredCSS('sources/sourcesView.css'); this.registerRequiredCSS('sources/sourcesView.css');
this.element.id = 'sources-panel-sources-view'; this.element.id = 'sources-panel-sources-view';
this.setMinimumAndPreferredSizes(50, 52, 150, 100); this.setMinimumAndPreferredSizes(80, 52, 150, 100);
var workspace = Workspace.workspace; var workspace = Workspace.workspace;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment