From ee924ef36e8c34d2eea241790423bd6eefec0a82 Mon Sep 17 00:00:00 2001 From: Khopa Date: Wed, 8 Aug 2018 16:24:20 +0200 Subject: [PATCH] Added title name to UI window --- ui/window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/window.py b/ui/window.py index cb9a17e0..0c5b9774 100644 --- a/ui/window.py +++ b/ui/window.py @@ -9,6 +9,7 @@ class Window: def __init__(self): self.tk = Tk() + self.tk.title("DCS Liberation") self.tk.grid_columnconfigure(0, weight=1) self.tk.grid_rowconfigure(0, weight=1)