mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-14 03:58:33 -05:00
Merge from vscode 31e03b8ffbb218a87e3941f2b63a249f061fe0e4 (#4986)
This commit is contained in:
@@ -44,6 +44,12 @@ export abstract class Composite extends Component implements IComposite {
|
||||
return this._onDidFocus.event;
|
||||
}
|
||||
|
||||
protected fireOnDidFocus(): void {
|
||||
if (this._onDidFocus) {
|
||||
this._onDidFocus.fire();
|
||||
}
|
||||
}
|
||||
|
||||
private _onDidBlur: Emitter<void>;
|
||||
get onDidBlur(): Event<void> {
|
||||
if (!this._onDidBlur) {
|
||||
|
||||
Reference in New Issue
Block a user