Skip to content

Commit

Permalink
Open .midi, .rmi files from sidebar (#6417)
Browse files Browse the repository at this point in the history
  • Loading branch information
Monospace-V authored Jun 1, 2022
1 parent d2dd7e3 commit 03571ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/FileBrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ void FileItem::determineFileType( void )
{
m_type = PatchFile;
}
else if( ext == "mid" )
else if( ext == "mid" || ext == "midi" || ext == "rmi" )
{
m_type = MidiFile;
m_handling = ImportAsProject;
Expand Down

0 comments on commit 03571ab

Please sign in to comment.