Merge remote-tracking branch 'origin/v3.5'

This commit is contained in:
Adolfo Gómez García 2022-02-07 16:12:51 +01:00
commit 1b9fd22ba1
2 changed files with 8 additions and 7 deletions

View File

@ -214,7 +214,8 @@ class StatsManager(metaclass=singleton.Singleton):
try: try:
def getKwarg(fld: str) -> str: def getKwarg(fld: str) -> str:
val = None val = kwargs.get(fld)
if val is None:
for i in FLDS_EQUIV[fld]: for i in FLDS_EQUIV[fld]:
val = kwargs.get(i) val = kwargs.get(i)
if val is not None: if val is not None:

View File

@ -17,13 +17,13 @@
@bottom-right { @bottom-right {
content: '{printed}' content: '{printed}'
} }
@left-top { /*@left-top {
content: "{water}"; font: .5cm/1.5 Fontin Sans; content: "{water}"; font: .5cm/1.5 Fontin Sans;
background: #557891; color: #fff; text-align: right; background: #557891; color: #fff; text-align: right;
padding-right: 2em; height: 1.5em; width: 10cm; padding-right: 2em; height: 1.5em; width: 10cm;
transform-origin: 100% 0; transform-origin: 100% 0;
transform: rotate(-90deg); transform: rotate(-90deg);
} }*/
} }
body { body {
text-align: justify; text-align: justify;