-
Notifications
You must be signed in to change notification settings - Fork 24
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
Launching via custom desktop files has become case-sensitive. #296
Comments
Thanks for reporting! That shows Qt uses case insensitive patterns by default, and so, we should do: QRegularExpression regExp(trimmedText, QRegularExpression::CaseInsensitiveOption); Could you please test that? |
Indeed, the following seems to restore previous behaviour:
Many thanks! |
Thanks for testing! I'll make a PR. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After fd53e27 [1], some desktop files seem to have become case-sensitive.
Test file named as
runtest.desktop
:Before the aforementioned commit, runner would find this via both,
runt
andRunt
, but with the commit, only viaRunt
.Perhaps this is even more correct behaviour, as non-custom desktop files seem to work okay still, but my custom ones similar to this test file are affected as described.
Comparing to some of those that seem to work still, I don't quite see what is making the difference.
Thank you!
The text was updated successfully, but these errors were encountered: