@@ -980,6 +980,7 @@ export class WidgetRenderer<S> {
980980 private onCloseByLayerId : ReadonlyMap < string , ( ) => void > = new Map < string , ( ) => void > ( ) ;
981981 private dropdownStack : readonly string [ ] = Object . freeze ( [ ] ) ;
982982 private readonly dropdownSelectedIndexById = new Map < string , number > ( ) ;
983+ private readonly dropdownWindowStartById = new Map < string , number > ( ) ;
983984 private overlayShortcutOwners : readonly OverlayShortcutOwner [ ] = Object . freeze ( [ ] ) ;
984985 private readonly overlayShortcutBySequence = new Map < string , OverlayShortcutBinding > ( ) ;
985986 private overlayShortcutTrie = buildTrie < OverlayShortcutContext > ( Object . freeze ( [ ] ) ) ;
@@ -1493,6 +1494,7 @@ export class WidgetRenderer<S> {
14931494 this . commandPaletteLoadingById ,
14941495 this . toolApprovalFocusedActionById ,
14951496 this . dropdownSelectedIndexById ,
1497+ this . dropdownWindowStartById ,
14961498 this . diffViewerFocusedHunkById ,
14971499 this . diffViewerExpandedHunksById ,
14981500 this . tableRenderCacheById ,
@@ -1754,6 +1756,7 @@ export class WidgetRenderer<S> {
17541756 toastContainers : this . toastContainers ,
17551757 toastActionByFocusId : this . toastActionByFocusId ,
17561758 dropdownSelectedIndexById : this . dropdownSelectedIndexById ,
1759+ dropdownWindowStartById : this . dropdownWindowStartById ,
17571760 toolApprovalFocusedActionById : this . toolApprovalFocusedActionById ,
17581761 diffViewerFocusedHunkById : this . diffViewerFocusedHunkById ,
17591762 diffViewerExpandedHunksById : this . diffViewerExpandedHunksById ,
@@ -3328,6 +3331,7 @@ export class WidgetRenderer<S> {
33283331 loadedTreeChildrenByTreeId : this . loadedTreeChildrenByTreeId ,
33293332 treeLoadTokenByTreeAndKey : this . treeLoadTokenByTreeAndKey ,
33303333 dropdownSelectedIndexById : this . dropdownSelectedIndexById ,
3334+ dropdownWindowStartById : this . dropdownWindowStartById ,
33313335 pressedVirtualList : this . pressedVirtualList ,
33323336 pressedFileTree : this . pressedFileTree ,
33333337 lastFileTreeClick : this . lastFileTreeClick ,
@@ -3569,6 +3573,7 @@ export class WidgetRenderer<S> {
35693573 this . commandPaletteLoadingById ,
35703574 this . toolApprovalFocusedActionById ,
35713575 this . dropdownSelectedIndexById ,
3576+ this . dropdownWindowStartById ,
35723577 this . diffViewerFocusedHunkById ,
35733578 this . diffViewerExpandedHunksById ,
35743579 this . tableRenderCacheById ,
@@ -3608,6 +3613,7 @@ export class WidgetRenderer<S> {
36083613 commandPaletteLoadingById : this . commandPaletteLoadingById ,
36093614 toolApprovalFocusedActionById : this . toolApprovalFocusedActionById ,
36103615 dropdownSelectedIndexById : this . dropdownSelectedIndexById ,
3616+ dropdownWindowStartById : this . dropdownWindowStartById ,
36113617 diffViewerFocusedHunkById : this . diffViewerFocusedHunkById ,
36123618 diffViewerExpandedHunksById : this . diffViewerExpandedHunksById ,
36133619 focusAnnouncement,
0 commit comments