-
Notifications
You must be signed in to change notification settings - Fork 241
Add "Sort by Channel" to mixer view #3418
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -558,11 +558,12 @@ enum ERecorderState | |
| enum EChSortType | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not part of this PR, but having this enum in utils looks unorganized.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah. I'll look to move it.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK it's in util.h because it's used in CSettings as well as the mixer board, I think -- all of the (Ideally, CSettings wouldn't work like that: each component would have its own settings and read or write them to the XML that CSettings simply read from a file or wrote to a file... But that is definitely a different PR!) |
||
| { | ||
| // used for settings -> enum values should be fixed | ||
| ST_NO_SORT = 0, | ||
| ST_BY_NAME = 1, | ||
| ST_BY_INSTRUMENT = 2, | ||
| ST_BY_GROUPID = 3, | ||
| ST_BY_CITY = 4 | ||
| ST_NO_SORT = 0, | ||
| ST_BY_NAME = 1, | ||
| ST_BY_INSTRUMENT = 2, | ||
| ST_BY_GROUPID = 3, | ||
| ST_BY_CITY = 4, | ||
| ST_BY_SERVER_CHANNEL = 5 | ||
| }; | ||
|
|
||
| // Directory type -------------------------------------------------------------- | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.