From 8e806d10c1415497e67d4cfdfdf5f2082ce071e4 Mon Sep 17 00:00:00 2001 From: Ace Date: Wed, 24 Oct 2018 21:36:06 +0200 Subject: [PATCH] Renamed icon 'bar' to 'seperator' --- Calendar/stable.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Calendar/stable.py b/Calendar/stable.py index f75e95a..3956151 100755 --- a/Calendar/stable.py +++ b/Calendar/stable.py @@ -55,14 +55,14 @@ tempicon = open(opath+'temp-icon.bmp') humicon = open(opath+'hum-icon.bmp') weekmon = open(opath+'week-mon.bmp') weeksun = open(opath+'week-sun.bmp') -bar = open(opath+'bar.bmp') +seperator = open(opath+'seperator.bmp') wiconplace = (570, 219) tempplace = (605, 310) humplace = (572, 308) monthplace = (443, 0) weekplace = (415,0) -barplace = (555, 0) +seperator_place = (555, 0) weekdaysmon = {'Mon': (416,3), 'Tue': (416,57), 'Wed': (416,111), 'Thu': (416,165), 'Fri': (416,219), 'Sat': (416,273), 'Sun':(416,327)} weekdayssun = {'Sun': (416,3), 'Mon': (416,57), 'Tue': (416,111), 'Wed': (416,165), 'Thu': (416,219), 'Fri': (416,273), 'Sat':(416,327)} @@ -111,7 +111,7 @@ def main(): #print('Your week starts on Sunday') #->debug draw(weekplace, weeksun) - draw(barplace, bar) + draw(seperatorplace, seperator) cal = calendar.monthcalendar(time.year, time.month)