Skip to content

Commit

Permalink
Merge 2436a28 into 564e401
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbudd authored May 31, 2024
2 parents 564e401 + 2436a28 commit c8931fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion source/gui/addonStoreGui/controls/storeDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,13 @@ def _toggleFilterControls(self):
_StatusFilterKey.AVAILABLE,
_StatusFilterKey.UPDATE,
}:
self._storeVM._filterChannelKey = Channel.STABLE
if self._storeVM._filteredStatusKey ==_StatusFilterKey.UPDATE and (
self._storeVM._installedAddons[Channel.DEV]
or self._storeVM._installedAddons[Channel.BETA]
):
self._storeVM._filterChannelKey = Channel.ALL
else:
self._storeVM._filterChannelKey = Channel.STABLE
self.enabledFilterCtrl.Hide()
self.enabledFilterCtrl.Disable()
self.includeIncompatibleCtrl.Enable()
Expand Down

0 comments on commit c8931fc

Please sign in to comment.