You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* activeEntry if newActive !filtered
* refactor 7 -> const value for readability + inline on compile
* Revert "refactor 7 -> const value for readability + inline on compile"
This reverts commit 49fb7ab.
// if any are true, newActive should NOT be set to this._activeEntry and the event should NOT fire
274
+
if(
275
+
(newActive!==this._activeEntry)&&!(
276
+
(showMarkdownHeadersOnly&&newActive?.cell.cellKind===CellKind.Markup&&newActive?.level===7)||// show headers only + cell is mkdn + is level 7 (no header)
277
+
(!showCodeCells&&newActive?.cell.cellKind===CellKind.Code)||// show code cells + cell is code
278
+
(!showCodeCellSymbols&&newActive?.cell.cellKind===CellKind.Code&&newActive?.level>7)// show code symbols + cell is code + has level > 7 (nb symbol levels)
0 commit comments