From 32586ef86f825a79cb65585c88a9ab921a387bb2 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Tue, 12 Nov 2024 11:53:04 +0100 Subject: windows: use a better systray default icon Draw a blue circle as default icon in the systray. Use the same blue color as the one shown in ogCP for an ogClient Windows instance. --- src/windows/ogOperations.py | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/windows/ogOperations.py b/src/windows/ogOperations.py index fcd6a20..26dd4f5 100644 --- a/src/windows/ogOperations.py +++ b/src/windows/ogOperations.py @@ -23,20 +23,23 @@ from src.ogRest import ThreadState def _create_default_image(): """ Creates a default image for the tray icon. Use in case - no favicon.ico is found. + no favicon.ico is found. The image will be a blue circle. """ width = height = 250 - color1 = (255, 255, 255) - color2 = (255, 0, 255) + circle_color = (45, 158, 251) - image = Image.new('RGB', (width, height), color1) + # Create a new image with a transparent background + image = Image.new('RGBA', (width, height), (0, 0, 0, 0)) dc = ImageDraw.Draw(image) - dc.rectangle( - (width // 2, 0, width, height // 2), - fill=color2) - dc.rectangle( - (0, height // 2, width // 2, height), - fill=color2) + + # Draw circle + circle_radius = min(width, height) // 2 - 10 + circle_center = (width // 2, height // 2) + dc.ellipse( + (circle_center[0] - circle_radius, circle_center[1] - circle_radius, + circle_center[0] + circle_radius, circle_center[1] + circle_radius), + fill=circle_color + ) return image -- cgit v1.2.3-18-g5258