From 4426c325320e28249b54d89cf1bab7dd4705ecff Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 28 Feb 2020 20:59:50 +0000 Subject: [PATCH] Increase threshold for larger font --- webinterface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webinterface.py b/webinterface.py index 67555479..28dbb117 100644 --- a/webinterface.py +++ b/webinterface.py @@ -4824,7 +4824,7 @@ def htmlHashTagSwarm(baseDir: str,actor: str) -> str: if tagCtr==0: tagSwarm.append(hashTagName) tagCtr+=1 - if tagCtr>1: + if tagCtr>2: break if tagCtr>0: tagSwarmCtr.append(tagCtr) @@ -4834,7 +4834,7 @@ def htmlHashTagSwarm(baseDir: str,actor: str) -> str: tagSwarmStr='' ctr=0 for tagName in tagSwarm: - if tagSwarmCtr[ctr]<2: + if tagSwarmCtr[ctr]<3: tagSwarmStr+= \ ''+tagName+' '