Skip to content

Commit

Permalink
fix #60298
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Oct 15, 2018
1 parent 05e1c11 commit bb0b08b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/browser/parts/editor/editorGroupView.ts
Expand Up @@ -45,6 +45,7 @@ import { StandardMouseEvent } from 'vs/base/browser/mouseEvent';
import { fillInContextMenuActions } from 'vs/platform/actions/browser/menuItemActionItem';
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
import { isErrorWithActions, IErrorWithActions } from 'vs/base/common/errorsWithActions';
import { URI } from 'vs/base/common/uri';

export class EditorGroupView extends Themable implements IEditorGroupView {

Expand Down Expand Up @@ -1421,7 +1422,7 @@ registerThemingParticipant((theme, collector, environment) => {
const letterpress = `resources/letterpress${theme.type === 'dark' ? '-dark' : theme.type === 'hc' ? '-hc' : ''}.svg`;
collector.addRule(`
.monaco-workbench > .part.editor > .content .editor-group-container.empty .editor-group-letterpress {
background-image: url('${join(environment.appRoot, letterpress).replace(/#/g, '%23')}')
background-image: url('${URI.file(join(environment.appRoot, letterpress)).toString()}')
}
`);

Expand Down

0 comments on commit bb0b08b

Please sign in to comment.