Revert "Fixed wrong negation in the _shouldRenderHint logic. (#242479)" (#282913)

This reverts commit 5dab7809de.
This commit is contained in:
Don Jayamanne
2025-12-12 14:01:28 +11:00
committed by GitHub
parent 5d479bdbe8
commit 855b9b1161

View File

@@ -52,7 +52,7 @@ export class EmptyCellEditorHintContribution extends EmptyTextEditorHintContribu
} }
const activeEditor = getNotebookEditorFromEditorPane(this._editorService.activeEditorPane); const activeEditor = getNotebookEditorFromEditorPane(this._editorService.activeEditorPane);
if (!activeEditor || activeEditor.isDisposed) { if (!activeEditor || !activeEditor.isDisposed) {
return false; return false;
} }