File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/workbench/contrib/debug/browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ export class DebugEditorContribution implements IDebugEditorContribution {
373
373
async showHover ( position : Position , focus : boolean ) : Promise < void > {
374
374
const sf = this . debugService . getViewModel ( ) . focusedStackFrame ;
375
375
const model = this . editor . getModel ( ) ;
376
- if ( sf && model && this . uriIdentityService . extUri . isEqual ( sf . source . uri , model . uri ) && ! this . altPressed ) {
376
+ if ( sf && model && this . uriIdentityService . extUri . isEqual ( sf . source . uri , model . uri ) ) {
377
377
const result = await this . hoverWidget . showAt ( position , focus ) ;
378
378
if ( result === ShowDebugHoverResult . NOT_AVAILABLE ) {
379
379
// When no expression available fallback to editor hover
@@ -408,7 +408,7 @@ export class DebugEditorContribution implements IDebugEditorContribution {
408
408
private get showHoverScheduler ( ) : RunOnceScheduler {
409
409
const hoverOption = this . editor . getOption ( EditorOption . hover ) ;
410
410
const scheduler = new RunOnceScheduler ( ( ) => {
411
- if ( this . hoverPosition ) {
411
+ if ( this . hoverPosition && ! this . altPressed ) {
412
412
this . showHover ( this . hoverPosition , false ) ;
413
413
}
414
414
} , hoverOption . delay * 2 ) ;
You can’t perform that action at this time.
0 commit comments