1
0
Fork 0
mirror of synced 2024-05-19 12:02:54 +12:00

Integrations: EOS -> Epic Overlay

This commit is contained in:
loathingKernel 2022-11-04 02:44:45 +02:00
parent b84d8a5c67
commit cb49e8b678
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@ class GameListHeadBar(QWidget):
egl_sync_action = QAction(icon("mdi.sync", "fa.refresh"), self.tr("Sync with EGL"), integrations_menu)
egl_sync_action.triggered.connect(self.goto_egl_sync)
eos_ubisoft_action = QAction(icon("mdi.rocket", "fa.rocket"), self.tr("EOS and Ubisoft"), integrations_menu)
eos_ubisoft_action = QAction(icon("mdi.rocket", "fa.rocket"), self.tr("Epic Overlay and Ubisoft"), integrations_menu)
eos_ubisoft_action.triggered.connect(self.goto_eos_ubisoft)
integrations_menu.addAction(import_action)

View file

@ -34,7 +34,7 @@ class IntegrationsTabs(SideTabWidget):
)
self.eos_ubisoft.addWidget(UbisoftGroup(self.eos_ubisoft))
self.eos_ubisoft.addWidget(EOSGroup(self.eos_ubisoft))
self.addTab(self.eos_ubisoft, self.tr("EOS and Ubisoft"))
self.addTab(self.eos_ubisoft, self.tr("Epic Overlay and Ubisoft"))
self.tabBar().setCurrentIndex(1)