From 5c2293053d7949362e9fc362441f3e6e768d07d6 Mon Sep 17 00:00:00 2001 From: dougollerenshaw Date: Thu, 10 Oct 2024 16:57:33 -0700 Subject: [PATCH] Another fix to icon paths --- codeaide/ui/chat_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeaide/ui/chat_window.py b/codeaide/ui/chat_window.py index 6af37a1..a037e3e 100644 --- a/codeaide/ui/chat_window.py +++ b/codeaide/ui/chat_window.py @@ -140,8 +140,8 @@ def __init__(self, chat_handler): self.is_recording = False # Load microphone icons - self.green_mic_icon = QIcon(get_resource_path("assets/green_mic.png")) - self.red_mic_icon = QIcon(get_resource_path("assets/red_mic.png")) + self.green_mic_icon = QIcon(get_resource_path("codeaide/assets/green_mic.png")) + self.red_mic_icon = QIcon(get_resource_path("codeaide/assets/red_mic.png")) self.setup_ui() self.setup_input_placeholder()