From 218fba3ad1e9db5bf196d8677490b3e3a4e28cf0 Mon Sep 17 00:00:00 2001 From: Tobias Sterbak Date: Thu, 16 Feb 2023 10:46:24 +0000 Subject: [PATCH] Make the title a bit higher to not distort it --- openandroidinstaller/views/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openandroidinstaller/views/base.py b/openandroidinstaller/views/base.py index f4975ba5..6d01d58b 100644 --- a/openandroidinstaller/views/base.py +++ b/openandroidinstaller/views/base.py @@ -32,7 +32,7 @@ def __init__(self, state: AppState, image: str = "placeholder.png"): # configs self.column_width = 600 # right part of the display, add content here. - self.right_view_header = Column(width=self.column_width, height=100, spacing=30) + self.right_view_header = Column(width=self.column_width, height=120, spacing=30) self.right_view = Column( alignment="center", width=self.column_width, height=650, scroll="auto" )