UI update

This commit is contained in:
Digital Artifex
2026-08-17 01:03:00 -04:00
parent 9e8b6a70c8
commit 471c91e622
9 changed files with 216 additions and 92 deletions
+12 -6
View File
@@ -160,13 +160,19 @@ auto FeaturedVideosModel::state() const -> FeaturedVideosModel::State
auto FeaturedVideosModel::setState(State state) -> void
{
if (m_state == state)
{
return;
}
QFuture<void> aether = QtConcurrent::run
(
[this, state]
{
if (m_state == state)
{
return;
}
m_state = state;
emit stateChanged();
m_state = state;
emit stateChanged();
}
);
}
auto FeaturedVideosModel::resetState() -> void