mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-26 01:25:38 -05:00
Fixing tabbing logic for tab headers (#19770)
* Fixing tabbing logic for tab headers * Renaming stuff Making null checks concise Adding comments * Renaming css class and interfaces from active to selected * Renaming styling classes and objects * Changing tabbing logic to match w3 behavior * Fixing focus logic in tab * Adding helper comment * Code cleanup
This commit is contained in:
@@ -1118,8 +1118,8 @@ export class Designer extends Disposable implements IThemable {
|
||||
private saveUIState(): void {
|
||||
if (this._input) {
|
||||
this._input.designerUIState = {
|
||||
activeContentTabId: this._contentTabbedPanel.activeTabId,
|
||||
activeScriptTabId: this._scriptTabbedPannel.activeTabId
|
||||
activeContentTabId: this._contentTabbedPanel.selectedTabId,
|
||||
activeScriptTabId: this._scriptTabbedPannel.selectedTabId
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user