From 39dbcc052a15586aba52fa5c59bfc10d0595bf2a Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 28 Feb 2020 21:04:37 +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 28dbb117..f4b61a8a 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>2: + if tagCtr>3: 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]<3: + if tagSwarmCtr[ctr]<4: tagSwarmStr+= \ ''+tagName+' '