Merge pull request #197180 from microsoft/roblou/classic-quokka

Show same hint in tooltip as in history input box placeholder
This commit is contained in:
Rob Lourens
2023-11-01 14:42:41 -07:00
committed by GitHub
@@ -754,6 +754,11 @@ export class HistoryInputBox extends InputBox implements IHistoryNavigationWidge
this.history.clear();
}
public override setPlaceHolder(placeHolder: string): void {
super.setPlaceHolder(placeHolder);
this.setTooltip(placeHolder);
}
protected override onBlur(): void {
super.onBlur();
this._onDidBlur.fire();