Skip to content

Commit

Permalink
Another fix to icon paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dougollerenshaw committed Oct 10, 2024
1 parent ecfea53 commit 5c22930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codeaide/ui/chat_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 5c22930

Please sign in to comment.