kopia lustrzana https://github.com/corrscope/corrscope
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
rodzic
b3d8f20faa
commit
5fce1f4f32
|
@ -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
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue