diff --git a/Calendar/icon_positions_locations.py b/Calendar/icon_positions_locations.py index 44aaf1c..34fa0d5 100644 --- a/Calendar/icon_positions_locations.py +++ b/Calendar/icon_positions_locations.py @@ -16,14 +16,14 @@ weekpath = path+'translations/'+language+'/week/' dpath = path+'days/' opath = path+'other/' -weekday = im_open(opath+'weekday.bmp').convert('L') -eventicon = im_open(opath+'event.bmp').convert('L') -dateicon = im_open(opath+'today.bmp').convert('L') +weekday = im_open(opath+'weekday.png') +eventicon = im_open(opath+'event.png') +dateicon = im_open(opath+'today.png') +seperator = im_open(opath+'seperator.jpeg') tempicon = im_open(opath+'temperature.jpeg') humicon = im_open(opath+'humidity.jpeg') weekmon = im_open(weekpath+'week-mon.jpeg') weeksun = im_open(weekpath+'week-sun.jpeg') -seperator = im_open(opath+'seperator.jpeg').convert('L') no_response = im_open(opath+'cloud-no-response.jpeg') sunriseicon = im_open(opath+'wi-sunrise.jpeg') sunseticon = im_open(opath+'wi-sunset.jpeg')