Font size shrinks
parent
32a7f4cbd3
commit
0cffa4b97a
|
@ -49,6 +49,7 @@ def colorcode(name):
|
||||||
|
|
||||||
|
|
||||||
_bs = 0.75 # border size
|
_bs = 0.75 # border size
|
||||||
|
_fs = 20 # font size
|
||||||
|
|
||||||
# medium shade of gray that seems to match the
|
# medium shade of gray that seems to match the
|
||||||
# default i3 window borders
|
# default i3 window borders
|
||||||
|
@ -63,7 +64,7 @@ _kv = (f'''
|
||||||
#:kivy 1.10.0
|
#:kivy 1.10.0
|
||||||
|
|
||||||
<Cell>
|
<Cell>
|
||||||
font_size: 21
|
font_size: {_fs}
|
||||||
|
|
||||||
# make text wrap to botom
|
# make text wrap to botom
|
||||||
text_size: self.size
|
text_size: self.size
|
||||||
|
@ -87,7 +88,7 @@ _kv = (f'''
|
||||||
|
|
||||||
|
|
||||||
<HeaderCell>
|
<HeaderCell>
|
||||||
font_size: 21
|
font_size: {_fs}
|
||||||
# canvas.before:
|
# canvas.before:
|
||||||
# Color:
|
# Color:
|
||||||
# rgba: [0.13]*4
|
# rgba: [0.13]*4
|
||||||
|
@ -102,7 +103,7 @@ _kv = (f'''
|
||||||
<TickerTable>
|
<TickerTable>
|
||||||
spacing: [{_bs}]
|
spacing: [{_bs}]
|
||||||
# row_force_default: True
|
# row_force_default: True
|
||||||
row_default_height: 62
|
row_default_height: 56
|
||||||
cols: 1
|
cols: 1
|
||||||
canvas.before:
|
canvas.before:
|
||||||
Color:
|
Color:
|
||||||
|
|
Loading…
Reference in New Issue