-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
crates should remember their own sort method #9606
Comments
Commented by: ywwg OK so this is tricky because of the library view header state. In general, every time the user chooses a sort column we can have the model save the new sql sort order. When the user clicks on a crate, these things happen:
The problem is, when do we save the header view state? The correct answer is in step 3, as part of the loadTrackModel function: that's when we have access to the header in the latest state. But we don't know what the old crate id is so that we can persist it to the database in the right place. We've already updated the model, so that information is blown away. The two main options I can think of are:
Suggestions welcome. |
Reported by: ywwg
Date: 2019-03-02T15:51:12Z
Status: In Progress
Importance: Wishlist
Launchpad Issue: lp1818342
Different crates serve different purposes, so I'd like to be able to have each crate remember their own sort order. For instance, my "pop" crate should be sorted by bpm, but my House crate should be sorted by comment field.
By default, a crate would use whatever the main library sorting method is. But if I change the sort order, mixxx should remember it.
As a point of reference, the Evolution email program does this for individual email folders and it's really nice.
The text was updated successfully, but these errors were encountered: