Line-thickness setting for day-list panel only
This commit is contained in:
parent
f53faee1a5
commit
d8a1c1c250
2 changed files with 3 additions and 1 deletions
|
@ -8,10 +8,11 @@ from TextDesign import TextDesign
|
||||||
from DayHeaderDesign import DayHeaderDesign
|
from DayHeaderDesign import DayHeaderDesign
|
||||||
from DayRowDesign import DayRowDesign
|
from DayRowDesign import DayRowDesign
|
||||||
from RssPostListDesign import RssPostListDesign
|
from RssPostListDesign import RssPostListDesign
|
||||||
|
from settings import line_thickness
|
||||||
|
|
||||||
todayheader_pos = (0,0)
|
todayheader_pos = (0,0)
|
||||||
todayheader_size = (1,0.25)
|
todayheader_size = (1,0.25)
|
||||||
lines_thickness = 1
|
lines_thickness = line_thickness
|
||||||
infoarea_replacedrowscount = 3
|
infoarea_replacedrowscount = 3
|
||||||
|
|
||||||
dayrowsarea_ypos = todayheader_size[1]
|
dayrowsarea_ypos = todayheader_size[1]
|
||||||
|
|
|
@ -26,6 +26,7 @@ update_interval = 60
|
||||||
"""DESIGN"""
|
"""DESIGN"""
|
||||||
font_size = 14 # does not affect every text
|
font_size = 14 # does not affect every text
|
||||||
font_boldness = "semibold" # extralight, light, regular, semibold, bold, extrabold
|
font_boldness = "semibold" # extralight, light, regular, semibold, bold, extrabold
|
||||||
|
line_thickness = 1 #1-3 Thickness advised // Default = 1 // day-list view only!
|
||||||
choosen_design = "month-overview" # month-overview, day-list, day-view, agenda-list, month-view
|
choosen_design = "month-overview" # month-overview, day-list, day-view, agenda-list, month-view
|
||||||
general_settings = { # General settings that designs may use
|
general_settings = { # General settings that designs may use
|
||||||
"info-area" : "rss", # empty, events, rss
|
"info-area" : "rss", # empty, events, rss
|
||||||
|
|
Loading…
Reference in a new issue