From b26c7d80aaeba896d0d10a8e79f5dc5fff03540e Mon Sep 17 00:00:00 2001 From: "Juraj K." <140317448+mostypc123@users.noreply.github.com> Date: Thu, 21 Nov 2024 20:50:54 +0100 Subject: [PATCH] Update main.py --- src/main.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.py b/src/main.py index 2a8d984..39b76cf 100644 --- a/src/main.py +++ b/src/main.py @@ -42,6 +42,12 @@ def InitUI(self): # Create the status bar self.CreateStatusBar() + + # Customize the appearance of the status bar + status_bar = self.GetStatusBar() + status_bar.SetBackgroundColour(wx.Colour(186, 210, 234)) # Dark gray + + # Display a welcome message in the status bar self.SetStatusText("Welcome to XediX") self.main_panel = wx.Panel(splitter)