From 31eea0a7bdfc93e76c9734fd61ef1dd742cba51f Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 21 Feb 2012 04:30:39 +0100 Subject: [PATCH] Don't hide OP/Thread when in a thread. --- 4chan_x.user.js | 2 +- script.coffee | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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