-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
[MU3] Partial fix for #306911 #6255
Conversation
9cd4b4b
to
b07cd7c
Compare
Not sure whether this PR should make it into 3.5.0, due to string freeze. It might go to 3.5.1 though. |
b07cd7c
to
8b01043
Compare
mscore/musescore.cpp
Outdated
else { // either set to "Ask" or not at all | ||
QMessageBox msgBox; | ||
QCheckBox ask; | ||
ask.setText(tr("Don't ask me again.")); | ||
ask.setText(tr("Remember my choice and don't ask again.")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The standard convention for checkbox text is not to have any punctuation at the end, so I would remove the “.”.
(I know that the “.” was already there prior to this PR, but it shouldn't have been, so we might as well take this opportunity to fix it.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fine by me, done
8b01043
to
c684b52
Compare
Changing strings is up to 3.6 |
c684b52
to
02976a8
Compare
* clarify the "don't ask again" * mention the current MuseScore version (that way the same dialog still works in MuseScore 4) * don't mark the score dirty if the reset is taken * fix a typo
02976a8
to
001d9f7
Compare
See https://musescore.org/en/node/306911
This PRs fixes:
works in MuseScore 4)
It does not resolve the core issue of showing a Save dialog on close of any imported score if no changes have been done to the score (other than the reset).
Its counterpart for master had been merged meanwhile