File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
editor/contrib/quickAccess/browser
workbench/contrib/codeEditor/browser/find Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import { overviewRulerRangeHighlight } from 'vs/editor/common/core/editorColorRe
1616import { IQuickAccessProvider } from 'vs/platform/quickinput/common/quickAccess' ;
1717import { IKeyMods , IQuickPick , IQuickPickItem } from 'vs/platform/quickinput/common/quickInput' ;
1818import { themeColorFromId } from 'vs/platform/theme/common/themeService' ;
19- import { alert } from 'vs/base/browser/ui/aria/aria' ;
19+ import { status } from 'vs/base/browser/ui/aria/aria' ;
2020
2121interface IEditorLineDecoration {
2222 readonly rangeHighlightId : string ;
@@ -149,7 +149,7 @@ export abstract class AbstractEditorNavigationQuickAccessProvider implements IQu
149149 }
150150 const model = editor . getModel ( ) ;
151151 if ( model && 'getLineContent' in model ) {
152- alert ( `${ model . getLineContent ( options . range . startLineNumber ) } ` ) ;
152+ status ( `${ model . getLineContent ( options . range . startLineNumber ) } ` ) ;
153153 }
154154 }
155155
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import * as strings from 'vs/base/common/strings';
2121import { TerminalCommandId } from 'vs/workbench/contrib/terminal/common/terminal' ;
2222import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding' ;
2323import { showHistoryKeybindingHint } from 'vs/platform/history/browser/historyWidgetKeybindingHint' ;
24- import { alert as alertFn } from 'vs/base/browser/ui/aria/aria' ;
24+ import { status } from 'vs/base/browser/ui/aria/aria' ;
2525import { defaultInputBoxStyles , defaultToggleStyles } from 'vs/platform/theme/browser/defaultStyles' ;
2626
2727const NLS_FIND_INPUT_LABEL = nls . localize ( 'label.find' , "Find" ) ;
@@ -374,7 +374,7 @@ export abstract class SimpleFindWidget extends Widget {
374374 } else {
375375 label = NLS_NO_RESULTS ;
376376 }
377- alertFn ( this . _announceSearchResults ( label , this . inputValue ) ) ;
377+ status ( this . _announceSearchResults ( label , this . inputValue ) ) ;
378378 this . _matchesCount . appendChild ( document . createTextNode ( label ) ) ;
379379 this . _foundMatch = ! ! count && count . resultCount > 0 ;
380380 this . updateButtons ( this . _foundMatch ) ;
You can’t perform that action at this time.
0 commit comments