From 5e39e0fa28ee8ed492276c24ee383256655734c8 Mon Sep 17 00:00:00 2001 From: Peter Harris Date: Tue, 8 Apr 2025 22:02:17 +0100 Subject: [PATCH] Timeline: Increase viewer font size --- lglpy/timeline/gui/resources/dark.css | 4 ++-- lglpy/timeline/gui/resources/light.css | 4 ++-- lglpy/timeline/gui/timeline/view.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lglpy/timeline/gui/resources/dark.css b/lglpy/timeline/gui/resources/dark.css index 7a7804a..2aab5bb 100644 --- a/lglpy/timeline/gui/resources/dark.css +++ b/lglpy/timeline/gui/resources/dark.css @@ -1,7 +1,7 @@ /* Centralized settings. */ mtv-core { fill-color: #262626; - font-size: 11; + font-size: 14; } /* ------------------------------------------------------------------------- */ @@ -9,7 +9,7 @@ mtv-core { [mtv-core] homev-core { font-color: #b0b0b0; - font-size: 13; + font-size: 14; } /* ------------------------------------------------------------------------- */ diff --git a/lglpy/timeline/gui/resources/light.css b/lglpy/timeline/gui/resources/light.css index 63f64e5..b5aeeef 100644 --- a/lglpy/timeline/gui/resources/light.css +++ b/lglpy/timeline/gui/resources/light.css @@ -1,7 +1,7 @@ /* Centralized settings. */ mtv-core { fill-color: #e5e5e5; - font-size: 11; + font-size: 14; } /* ------------------------------------------------------------------------- */ @@ -9,7 +9,7 @@ mtv-core { [mtv-core] homev-core { font-color: #404040; - font-size: 13; + font-size: 14; } /* ------------------------------------------------------------------------- */ diff --git a/lglpy/timeline/gui/timeline/view.py b/lglpy/timeline/gui/timeline/view.py index 18aea44..7c94465 100644 --- a/lglpy/timeline/gui/timeline/view.py +++ b/lglpy/timeline/gui/timeline/view.py @@ -74,7 +74,7 @@ class TLSpec: same screen space. ''' CHANNEL_START_Y = 55 - CHANNEL_BOX_Y = 40 + CHANNEL_BOX_Y = 50 CHANNEL_GAP_Y = 30 specMap = {} # type: dict[str, TLSpec]