File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
src/vs/workbench/contrib/chat/electron-sandbox/actions Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -919,7 +919,8 @@ export class ReadChatResponseAloud extends Action2 {
919
919
ScopedChatSynthesisInProgress . negate ( ) , // but not when already in progress
920
920
CONTEXT_RESPONSE_FILTERED . negate ( ) , // and not when response is filtered
921
921
) ,
922
- group : 'navigation'
922
+ group : 'navigation' ,
923
+ order : - 10 // first
923
924
} , {
924
925
id : MENU_INLINE_CHAT_WIDGET_SECONDARY ,
925
926
when : ContextKeyExpr . and (
@@ -928,7 +929,8 @@ export class ReadChatResponseAloud extends Action2 {
928
929
ScopedChatSynthesisInProgress . negate ( ) , // but not when already in progress
929
930
CONTEXT_RESPONSE_FILTERED . negate ( ) // and not when response is filtered
930
931
) ,
931
- group : 'navigation'
932
+ group : 'navigation' ,
933
+ order : - 10 // first
932
934
} ]
933
935
} ) ;
934
936
}
@@ -1046,7 +1048,8 @@ export class StopReadChatItemAloud extends Action2 {
1046
1048
CONTEXT_RESPONSE , // only for responses
1047
1049
CONTEXT_RESPONSE_FILTERED . negate ( ) // but not when response is filtered
1048
1050
) ,
1049
- group : 'navigation'
1051
+ group : 'navigation' ,
1052
+ order : - 10 // first
1050
1053
} ,
1051
1054
{
1052
1055
id : MENU_INLINE_CHAT_WIDGET_SECONDARY ,
@@ -1055,7 +1058,8 @@ export class StopReadChatItemAloud extends Action2 {
1055
1058
CONTEXT_RESPONSE , // only for responses
1056
1059
CONTEXT_RESPONSE_FILTERED . negate ( ) // but not when response is filtered
1057
1060
) ,
1058
- group : 'navigation'
1061
+ group : 'navigation' ,
1062
+ order : - 10 // first
1059
1063
}
1060
1064
]
1061
1065
} ) ;
You can’t perform that action at this time.
0 commit comments