Switch to 1080p output resolution by default, increase label font size

Newer processors and the recent parallel rendering merge should speed up
rendering enough to default to 1080p output. Additionally, most people
have 1080p and higher screens, so 1080p videos will look sharper when
watching.

We can leave the line width at 1.5 pixels, unless people prefer 2px or
so lines.
pull/458/head
nyanpasu64 2024-01-17 16:00:30 -08:00
rodzic b3d8f20faa
commit 5fce1f4f32
3 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -8,6 +8,7 @@
- Update defaults (#458)
- Switch default stereo orientation to vertical (to match user expectations)
- Switch to 1080p output resolution by default, increase label font size
### Changelog

Wyświetl plik

@ -138,9 +138,9 @@ def template_config(**kwargs) -> Config:
channels=[],
layout=LayoutConfig(orientation="v", stereo_orientation="v", ncols=1),
render=RendererConfig(
1280,
720,
res_divisor=4 / 3,
1920,
1080,
res_divisor=3 / 2,
grid_color="#55aaff",
v_midline=True,
h_midline=True,

Wyświetl plik

@ -142,7 +142,7 @@ class Font(DumpableAttrs, always_dump="*"):
bold: bool = False
italic: bool = False
# Font size
size: float = with_units("pt", default=20)
size: float = with_units("pt", default=28)
# QFont implementation details
toString: str = None