diff --git a/4chan_x.user.js b/4chan_x.user.js index 0db673c08..d475de733 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3854,7 +3854,7 @@ return; } $.ready(Options.init); - if (conf['Quick Reply'] && conf['Hide Original Post Form']) { + if (conf['Quick Reply'] && conf['Hide Original Post Form'] && g.board !== 'f') { Main.css += 'form[name=post] { display: none; }'; } Main.addStyle(); diff --git a/script.coffee b/script.coffee index 5224314aa..c418964b9 100644 --- a/script.coffee +++ b/script.coffee @@ -3194,7 +3194,7 @@ Main = $.ready Options.init - if conf['Quick Reply'] and conf['Hide Original Post Form'] + if conf['Quick Reply'] and conf['Hide Original Post Form'] and g.board isnt 'f' Main.css += 'form[name=post] { display: none; }' Main.addStyle()