From 8dc08726a54fb39df8743f921d18a8f599e0807e Mon Sep 17 00:00:00 2001
From: Christoph Olberding <christoph.olberding@stud.hs-bochum.de>
Date: Tue, 30 Mar 2021 07:08:42 +0000
Subject: [PATCH] Update UI/UI.py

---
 UI/UI.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/UI/UI.py b/UI/UI.py
index 42e9efa..a9fe382 100644
--- a/UI/UI.py
+++ b/UI/UI.py
@@ -26,11 +26,12 @@ OptionList = [
 
 app = tk.Tk()
 
-app.geometry('300x600')
+app.geometry('1000x1000')
 
 variable = tk.StringVar(app)
 variable.set(OptionList[0])
-
+lsum = tk.Label(app, text = 'Wohin möchten Sie?',font = ('Helvetica', 26))
+lsum.pack()
 opt = tk.OptionMenu(app, variable, *OptionList)
 opt.config(width=90, font=('Helvetica', 32))
 opt.pack()
-- 
GitLab