Skip to content

Commit e4d2c15

Browse files
author
Loïc Mangeonjean
committed
fix: implement default service methods
1 parent 2057f2b commit e4d2c15

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/missing-services.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,12 +1147,12 @@ registerSingleton(IStatusbarService, class StatusbarService implements IStatusba
11471147
})
11481148

11491149
isEntryVisible = () => false
1150-
updateEntryVisibility = unsupported
1151-
focus = unsupported
1152-
focusNextEntry = unsupported
1153-
focusPreviousEntry = unsupported
1154-
isEntryFocused = unsupported
1155-
overrideStyle = unsupported
1150+
updateEntryVisibility = () => { /* ignore */ }
1151+
focus = () => { /* ignore */ }
1152+
focusNextEntry = () => { /* ignore */ }
1153+
focusPreviousEntry = () => { /* ignore */ }
1154+
isEntryFocused = () => false
1155+
overrideStyle = () => Disposable.None
11561156
}, InstantiationType.Eager)
11571157

11581158
registerSingleton(IExtensionGalleryService, class ExtensionGalleryService implements IExtensionGalleryService {

0 commit comments

Comments
 (0)