We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98dc0ec commit cbd2318Copy full SHA for cbd2318
pupgui2/pupgui2ctinfodialog.py
@@ -29,7 +29,7 @@ def __init__(self, parent=None, ctool: BasicCompatTool = None, install_loc=None)
29
self.games: List[Union[SteamApp, LutrisGame, HeroicGame]] = []
30
self.install_loc = install_loc
31
self.is_batch_update_available = False
32
- self.is_mark_global_available = self.ctool.ct_type == CTType.CUSTOM and self.install_loc.get('launcher') == 'steam' and 'vdf_dir' in self.install_loc
+ self.is_mark_global_available = (self.ctool.ct_type == CTType.CUSTOM and not self.ctool.is_global) and self.install_loc.get('launcher') == 'steam' and 'vdf_dir' in self.install_loc
33
34
self.load_ui()
35
self.setup_ui()
0 commit comments