fix set sorting (#6630)

This commit is contained in:
ebbit1q 2026-03-02 23:06:05 +01:00 committed by GitHub
parent f978407a19
commit e57ee8e9c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 22 additions and 20 deletions

View file

@ -45,9 +45,6 @@ private:
QHBoxLayout *filterBox;
int sortIndex;
Qt::SortOrder sortOrder;
void closeEvent(QCloseEvent *ev) override;
void saveHeaderState();
void rebuildMainLayout(int actionToTake);
bool setOrderIsSorted;
bool includeRebalancedCards;
enum
@ -56,6 +53,11 @@ private:
SOME_SETS_SELECTED
};
void closeEvent(QCloseEvent *ev) override;
void saveHeaderState();
void rebuildMainLayout(int actionToTake);
void resetSort();
public:
explicit WndSets(QWidget *parent = nullptr);
~WndSets() override;