File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/vs/workbench/contrib/chat/electron-sandbox/actions Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -905,8 +905,8 @@ class KeywordActivationStatusEntry extends Disposable {
905
905
906
906
private static STATUS_NAME = localize ( 'keywordActivation.status.name' , "Voice Keyword Activation" ) ;
907
907
private static STATUS_COMMAND = 'keywordActivation.status.command' ;
908
- private static STATUS_ACTIVE = localize ( 'keywordActivation.status.active' , "Voice Keyword Activation: Active " ) ;
909
- private static STATUS_INACTIVE = localize ( 'keywordActivation.status.inactive' , "Voice Keyword Activation: Inactive " ) ;
908
+ private static STATUS_ACTIVE = localize ( 'keywordActivation.status.active' , "Listening to 'Hey Code'... " ) ;
909
+ private static STATUS_INACTIVE = localize ( 'keywordActivation.status.inactive' , "Waiting for voice chat to end... " ) ;
910
910
911
911
constructor (
912
912
@ISpeechService private readonly speechService : ISpeechService ,
@@ -952,11 +952,11 @@ class KeywordActivationStatusEntry extends Disposable {
952
952
private getStatusEntryProperties ( ) : IStatusbarEntry {
953
953
return {
954
954
name : KeywordActivationStatusEntry . STATUS_NAME ,
955
- text : '$(mic)' ,
955
+ text : this . speechService . hasActiveKeywordRecognition ? '$(mic-filled)' : '$(mic)' ,
956
956
tooltip : this . speechService . hasActiveKeywordRecognition ? KeywordActivationStatusEntry . STATUS_ACTIVE : KeywordActivationStatusEntry . STATUS_INACTIVE ,
957
957
ariaLabel : this . speechService . hasActiveKeywordRecognition ? KeywordActivationStatusEntry . STATUS_ACTIVE : KeywordActivationStatusEntry . STATUS_INACTIVE ,
958
958
command : KeywordActivationStatusEntry . STATUS_COMMAND ,
959
- kind : this . speechService . hasActiveKeywordRecognition ? 'prominent' : 'standard '
959
+ kind : 'prominent'
960
960
} ;
961
961
}
962
962
You can’t perform that action at this time.
0 commit comments