diff --git a/4chan_x.user.js b/4chan_x.user.js index 14245391a..071de23c1 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -568,7 +568,7 @@ if (hl) { $.addClass(root, 'filter_highlight'); } else if (isOP) { - threadHiding.hideHide(root.parentNode); + if (!g.REPLY) threadHiding.hideHide(root.parentNode); } else { replyHiding.hideHide(root.previousSibling); } diff --git a/script.coffee b/script.coffee index 693b01ba7..68d23c7fa 100644 --- a/script.coffee +++ b/script.coffee @@ -462,7 +462,8 @@ filter = if hl $.addClass root, 'filter_highlight' else if isOP - threadHiding.hideHide root.parentNode + unless g.REPLY + threadHiding.hideHide root.parentNode else replyHiding.hideHide root.previousSibling true