From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 033F52018E; Fri, 5 Aug 2016 18:15:00 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Cc: Jeff King Subject: [PATCH] view: use
to delineate in /$MID/T/ view Date: Fri, 5 Aug 2016 18:14:59 +0000 Message-Id: <20160805181459.24420-1-e@80x24.org> List-Id: The sacrifice in vertical space might be worth it to improve ease-of-reading, as it's unreasonable to expect an entire message thread to be able to fit into a single window. https://public-inbox.org/git/20160805093544.scvl4yshkfg2l26p@sigill.intra.peff.net/ Cc: Jeff King --- lib/PublicInbox/View.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index db0cdc0..e150a01 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -180,7 +180,7 @@ sub index_entry { $rv .= " $ctx->{s_nr}"; } - $rv .= $more ? "\n\n" : "\n"; + $rv .= $more ? '
' : '
'; } sub pad_link ($$;$) { -- EW