1
0
Fork 0

Fix #13814, 2824e790: A Set() became Reset() preventing initial sorting of lists (#13816)

pull/13826/head
Loïc Guilloux 2025-03-14 21:15:42 +01:00 committed by GitHub
parent ac2087a3eb
commit c5ec8fb05f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ public:
bool NeedResort()
{
if (--this->resort_timer == 0) {
this->flags.Reset(SortListFlag::Resort);
this->flags.Set(SortListFlag::Resort);
this->ResetResortTimer();
return true;
}