mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 20:13:36 +00:00
Fix bug where track sort overlay was suppressing save playlist
functionality.
This commit is contained in:
parent
612c433e54
commit
6ec6138097
@ -416,7 +416,10 @@ bool BrowseLayout::KeyPress(const std::string& key) {
|
||||
this->Layout();
|
||||
return true;
|
||||
}
|
||||
else if (Hotkeys::Is(Hotkeys::TrackListChangeSortOrder, key)) {
|
||||
else if (
|
||||
this->categoryList->GetFieldName() != musik::core::sdk::category::Playlist &&
|
||||
Hotkeys::Is(Hotkeys::TrackListChangeSortOrder, key))
|
||||
{
|
||||
this->ShowTrackSortOverlay();
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user