Skip to content

Commit

Permalink
Change default 'Installed Games Only' to show those games in a new in…
Browse files Browse the repository at this point in the history
…stall.

I think default was flipped by commit 01340c3, and it looks like it's just a bug.

But with the new library-sync feature, which we guide users towards, the Lutris service is now gone, so 'Installed Games Only' effectively hides what used to be the Lutris service. I see this confusing users on Discord at least.

This only affects new installations of Lutris; the saved setting is still respected.
  • Loading branch information
danieljohnson2 committed May 11, 2024
1 parent c833cd8 commit 80fdb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lutris/gui/lutriswindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def current_view_type(self):

@property
def filter_installed(self):
return settings.read_bool_setting("filter_installed", True)
return settings.read_bool_setting("filter_installed", False)

@property
def side_panel_visible(self):
Expand Down

0 comments on commit 80fdb19

Please sign in to comment.