mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 09:35:36 -05:00
Bug/accessibility - Focus related issues (#6859)
* fix for https://github.com/microsoft/azuredatastudio/issues/6798 * fix for https://github.com/microsoft/azuredatastudio/issues/6851
This commit is contained in:
@@ -1066,6 +1066,12 @@ class RadioButtonWrapper extends ComponentWrapper implements azdata.RadioButtonC
|
||||
public set checked(v: boolean) {
|
||||
this.setProperty('checked', v);
|
||||
}
|
||||
public get focused(): boolean {
|
||||
return this.properties['focused'];
|
||||
}
|
||||
public set focused(v: boolean) {
|
||||
this.setProperty('focused', v);
|
||||
}
|
||||
|
||||
public get onDidClick(): vscode.Event<any> {
|
||||
let emitter = this._emitterMap.get(ComponentEventType.onDidClick);
|
||||
|
||||
Reference in New Issue
Block a user