Skip to content

Commit

Permalink
Store: Clean up store UI by using library widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
loathingKernel committed Mar 16, 2023
1 parent 22b8992 commit 4dd01d0
Show file tree
Hide file tree
Showing 24 changed files with 1,683 additions and 1,238 deletions.
4 changes: 2 additions & 2 deletions rare/components/tabs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .games import GamesTab
from .settings import SettingsTab
from .settings.debug import DebugSettings
from .shop import Shop
from .store import StoreTab
from .tab_widgets import MainTabBar, TabButtonWidget


Expand Down Expand Up @@ -38,7 +38,7 @@ def __init__(self, parent):
self.downloads_tab.update_queues_count()
self.setTabEnabled(self.downloads_index, not self.args.offline)

self.store_tab = Shop(self.core)
self.store_tab = StoreTab(self.core, parent=self)
self.store_index = self.addTab(self.store_tab, self.tr("Store (Beta)"))
self.setTabEnabled(self.store_index, not self.args.offline)

Expand Down
68 changes: 0 additions & 68 deletions rare/components/tabs/shop/__init__.py

This file was deleted.

117 changes: 0 additions & 117 deletions rare/components/tabs/shop/constants.py

This file was deleted.

111 changes: 0 additions & 111 deletions rare/components/tabs/shop/search_results.py

This file was deleted.

Loading

0 comments on commit 4dd01d0

Please sign in to comment.