Skip to content

Commit

Permalink
add missing space at the end of filterString
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Aug 15, 2023
1 parent 783807d commit aaff929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qvapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ void QVApplication::defineFilterLists()
if (fileExtension == ".jpg")
{
filterList << "*.jpe" << "*.jfi" << "*.jfif";
filterString += "*.jpe *.jfi *.jfif";
filterString += "*.jpe *.jfi *.jfif ";
fileExtensionList << ".jpe" << ".jfi" << ".jfif";
}
}
Expand Down

0 comments on commit aaff929

Please sign in to comment.