Let's turn on AsyncTrackListQueries by default now that the

functionality has stabilized.
This commit is contained in:
casey langen 2020-10-30 21:26:42 -07:00
parent 783fb467ff
commit a12134c610
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ static inline std::shared_ptr<ISchema> AdvancedSettingsSchema() {
#endif
schema->AddBool(cube::prefs::keys::AutoHideCommandBar, false);
schema->AddInt(core::prefs::keys::RemoteLibraryLatencyTimeoutMs, 5000);
schema->AddBool(core::prefs::keys::AsyncTrackListQueries, false);
schema->AddBool(core::prefs::keys::AsyncTrackListQueries, true);
schema->AddBool(cube::prefs::keys::DisableRatingColumn, false);
schema->AddBool(cube::prefs::keys::DisableWindowTitleUpdates, false);
schema->AddString(cube::prefs::keys::RatingPositiveChar, kFilledStar.c_str());

View File

@ -238,7 +238,7 @@ void TrackListView::SetTrackListAndUpateEventHandlers(std::shared_ptr<TrackList>
this->tracks->WindowCached.connect(this, &TrackListView::OnTrackListWindowCached);
}
sGetAsync = Preferences::ForComponent(prefs::components::Settings)->GetBool(
prefs::keys::AsyncTrackListQueries, false);
prefs::keys::AsyncTrackListQueries, true);
}
void TrackListView::ProcessMessage(IMessage &message) {