Enable sash for webview find widget (#189977)

Fixes #189648
This commit is contained in:
Matt Bierner
2023-08-08 15:16:03 -07:00
committed by GitHub
parent e6fcbab20a
commit ce652fbb3a
@@ -33,7 +33,11 @@ export class WebviewFindWidget extends SimpleFindWidget {
@IContextKeyService contextKeyService: IContextKeyService,
@IKeybindingService keybindingService: IKeybindingService
) {
super({ showCommonFindToggles: false, checkImeCompletionState: _delegate.checkImeCompletionState }, contextViewService, contextKeyService, keybindingService);
super({
showCommonFindToggles: false,
checkImeCompletionState: _delegate.checkImeCompletionState,
enableSash: true,
}, contextViewService, contextKeyService, keybindingService);
this._findWidgetFocused = KEYBINDING_CONTEXT_WEBVIEW_FIND_WIDGET_FOCUSED.bindTo(contextKeyService);
this._register(_delegate.hasFindResult(hasResult => {