Skip to content

Commit

Permalink
Don't let sidepanel titles wrap.
Browse files Browse the repository at this point in the history
Fixes #4644
  • Loading branch information
jbicker committed Mar 21, 2019
1 parent 6a07cec commit 5c156b6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/core/src/browser/shell/side-panel-toolbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export class SidePanelToolbar extends Widget {
protected init(): void {
this.titleContainer = document.createElement('div');
this.titleContainer.classList.add('theia-sidepanel-title');
this.titleContainer.classList.add('noWrapInfo');
this.node.appendChild(this.titleContainer);
this.node.classList.add('theia-sidepanel-toolbar');
this.node.classList.add(`theia-${this.side}-side-panel`);
Expand Down

0 comments on commit 5c156b6

Please sign in to comment.