From 9e5f763474e39bedd36512473db53fe7f059a66f Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Thu, 6 Jan 2022 16:16:26 +0100 Subject: [PATCH] Try to make smaler scale --- src/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index cc7860f..ae9a5c1 100644 --- a/src/main.py +++ b/src/main.py @@ -13,8 +13,8 @@ from Channel import SVT, YouTube from ChannelProvider import ChannelProvider from Utils import make_sized_button -WIDTH = 720 -HEIGHT = 1440 +WIDTH = 720 / 2 +HEIGHT = 1440 / 2 BTN_HEIGHT = 40 SPACER_HEIGHT = 10 @@ -64,6 +64,7 @@ class Cast(wx.Frame): ] self.m_selected_channel = None self.m_selected_provider_index = None + self, self.show_provider_list(None) def add_back_button(self, callback: Callable) -> None: