diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f05212..0ddca2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/corrscope/corrscope.py b/corrscope/corrscope.py index 425af07..789f09c 100644 --- a/corrscope/corrscope.py +++ b/corrscope/corrscope.py @@ -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, diff --git a/corrscope/renderer.py b/corrscope/renderer.py index 9c69ca5..2548680 100644 --- a/corrscope/renderer.py +++ b/corrscope/renderer.py @@ -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