Skip to content
Snippets Groups Projects
Commit 966836ed authored by SeeLook's avatar SeeLook
Browse files

Fixed missing neutral sign in note on a score correction, preventing Enter...

Fixed missing neutral sign in note on a score correction, preventing Enter pressing during correction
parent b1e18670
Branches
Tags
No related merge requests found
......@@ -12,7 +12,7 @@
============================================================================
====== BUGS AND ISSUES ===============================================
- correction on a score doesn't show natural sign
- correction on the score has to display name in question style
MINOR:
- when instrument in new exercise changes:
......@@ -24,7 +24,6 @@ MINOR:
- check is intonation checked properly in exams
- changing a clef in instrument settings tab (no instrument) gives strange instrument scale
- replace all font-szie: 20px with <big>
- changing tool bar auto-hiding causes sometimes locked melody menu
- auto hidden tool bar remains big after decreased window size
- disable shortcuts (KDE styles) or change text to icon on buttons to select instrument and used string (range settings)
......
......@@ -224,12 +224,14 @@ void TtoolBar::setForQuestion(bool repeatSound, bool tuneFork) {
addAction(repeatSndAct);
if (tuneFork && tuneForkAct)
addAction(tuneForkAct);
checkAct->setDisabled(false);
addAction(checkAct);
}
void TtoolBar::setAfterAnswer() {
removeAction(checkAct);
checkAct->setDisabled(true);
if (repeatSndAct)
removeAction(repeatSndAct);
if (tuneForkAct)
......
......@@ -215,6 +215,7 @@ void TscoreNote::moveNote(int posY) {
}
}
if (m_noteAnim) {
m_mainAccid->show();
m_accidAnim->startCrossFading(newAccid, m_mainColor);
} else {
m_mainAccid->setText(newAccid);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment