File tree Expand file tree Collapse file tree
src/vs/workbench/browser/parts/editor Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import { tail } from 'vs/base/common/arrays';
1111import { timeout } from 'vs/base/common/async' ;
1212import { KeyCode , KeyMod } from 'vs/base/common/keyCodes' ;
1313import { combinedDisposable , dispose , IDisposable } from 'vs/base/common/lifecycle' ;
14- import { Schemas } from 'vs/base/common/network' ;
1514import { isEqual } from 'vs/base/common/resources' ;
1615import { URI } from 'vs/base/common/uri' ;
1716import 'vs/css!./media/breadcrumbscontrol' ;
@@ -224,7 +223,7 @@ export class BreadcrumbsControl {
224223 input = input . master ;
225224 }
226225
227- if ( ! input || ! input . getResource ( ) || ( input . getResource ( ) ! . scheme !== Schemas . untitled && ! this . _fileService . canHandleResource ( input . getResource ( ) ! ) ) ) {
226+ if ( ! input || ! input . getResource ( ) || ! this . _fileService . canHandleResource ( input . getResource ( ) ! ) ) {
228227 // cleanup and return when there is no input or when
229228 // we cannot handle this input
230229 this . _ckBreadcrumbsPossible . set ( false ) ;
You can’t perform that action at this time.
0 commit comments