From 1e9a592877976eda8a0f0fd82435ef2e8eb31465 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 1 Oct 2020 18:58:12 +0100 Subject: [PATCH] Edit icon --- webinterface.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/webinterface.py b/webinterface.py index 59706b6c..f289008b 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5151,7 +5151,8 @@ def htmlHighlightLabel(label: str, highlight: bool) -> str: def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, - httpPrefix: str, translate: {}) -> str: + httpPrefix: str, translate: {}, + iconsDir: str) -> str: """Returns html content for the left column """ htmlStr = \ @@ -5159,8 +5160,8 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, ' ' + \ - '\n' + \ + '\n' + \ ' \n' return htmlStr @@ -5483,7 +5484,7 @@ def htmlTimeline(defaultTimeline: str, # left column leftColumnStr = \ getLeftColumnContent(baseDir, nickname, domainFull, - httpPrefix, translate) + httpPrefix, translate, iconsDir) tlStr += ' ' + leftColumnStr + '\n' # center column containing posts tlStr += ' \n'