mirror of
https://github.com/clangen/musikcube.git
synced 2025-01-29 03:32:42 +00:00
Let's turn on AsyncTrackListQueries by default now that the
functionality has stabilized.
This commit is contained in:
parent
783fb467ff
commit
a12134c610
@ -119,7 +119,7 @@ static inline std::shared_ptr<ISchema> AdvancedSettingsSchema() {
|
|||||||
#endif
|
#endif
|
||||||
schema->AddBool(cube::prefs::keys::AutoHideCommandBar, false);
|
schema->AddBool(cube::prefs::keys::AutoHideCommandBar, false);
|
||||||
schema->AddInt(core::prefs::keys::RemoteLibraryLatencyTimeoutMs, 5000);
|
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::DisableRatingColumn, false);
|
||||||
schema->AddBool(cube::prefs::keys::DisableWindowTitleUpdates, false);
|
schema->AddBool(cube::prefs::keys::DisableWindowTitleUpdates, false);
|
||||||
schema->AddString(cube::prefs::keys::RatingPositiveChar, kFilledStar.c_str());
|
schema->AddString(cube::prefs::keys::RatingPositiveChar, kFilledStar.c_str());
|
||||||
|
@ -238,7 +238,7 @@ void TrackListView::SetTrackListAndUpateEventHandlers(std::shared_ptr<TrackList>
|
|||||||
this->tracks->WindowCached.connect(this, &TrackListView::OnTrackListWindowCached);
|
this->tracks->WindowCached.connect(this, &TrackListView::OnTrackListWindowCached);
|
||||||
}
|
}
|
||||||
sGetAsync = Preferences::ForComponent(prefs::components::Settings)->GetBool(
|
sGetAsync = Preferences::ForComponent(prefs::components::Settings)->GetBool(
|
||||||
prefs::keys::AsyncTrackListQueries, false);
|
prefs::keys::AsyncTrackListQueries, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TrackListView::ProcessMessage(IMessage &message) {
|
void TrackListView::ProcessMessage(IMessage &message) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user