From e7e91ef3b8ba7a653be12dbb652b8feb2358bc53 Mon Sep 17 00:00:00 2001
From: Boris Yumankulov <boria138@altlinux.org>
Date: Fri, 13 Jun 2025 18:24:56 +0500
Subject: [PATCH] feat: replace steam placeholder icon to real egs icon

Signed-off-by: Boris Yumankulov <boria138@altlinux.org>
---
 portprotonqt/game_card.py   | 2 +-
 portprotonqt/main_window.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/portprotonqt/game_card.py b/portprotonqt/game_card.py
index ca95cfd..4ca8f1a 100644
--- a/portprotonqt/game_card.py
+++ b/portprotonqt/game_card.py
@@ -160,7 +160,7 @@ class GameCard(QFrame):
         self.steamLabel.setVisible(steam_visible)
 
         # Epic Games Store бейдж
-        egs_icon = self.theme_manager.get_icon("steam")
+        egs_icon = self.theme_manager.get_icon("epic_games")
         self.egsLabel = ClickableLabel(
             "Epic Games",
             icon=egs_icon,
diff --git a/portprotonqt/main_window.py b/portprotonqt/main_window.py
index f26e064..4b841c9 100644
--- a/portprotonqt/main_window.py
+++ b/portprotonqt/main_window.py
@@ -1528,7 +1528,7 @@ class MainWindow(QMainWindow):
         steamLabel.clicked.connect(lambda: QDesktopServices.openUrl(QUrl(f"https://steamcommunity.com/app/{appid}")))
 
         # Epic Games Store бейдж
-        egs_icon = self.theme_manager.get_icon("steam")
+        egs_icon = self.theme_manager.get_icon("epic_games")
         egsLabel = ClickableLabel(
             "Epic Games",
             icon=egs_icon,