diff --git a/TODO b/TODO
index c624a93e44d6d2f48273ab2544165c0620e2b109..2a843e031af6e31e5faa1bf0e5f59ca8bd06d431 100644
--- a/TODO
+++ b/TODO
@@ -13,6 +13,7 @@
 Translations:
  - remove <br> from some status strings (rangesettings.cpp, accidsettings.cpp)
 
+============================================================================
 ANDROID:
     - quick icons:
         - disable sniffing/note by note when audio input is off
@@ -29,8 +30,7 @@ ANDROID:
 - Help QTextBrowser has QScroller but it works only with two-touch move, but TlevelPreview works good
 - HOME button would be switching available menus
 - handle BACK button to destroy visible menu and/or prevent to close exam
-- alternate enharmonical names color is white by default in settings (when single note is unlocked)
-  its change is not approved to score
+============================================================================
 - TexamExecutor has many, many un-wrapped strings, many ""
 
 - remove tanimedtextitem.cpp - probably unused
diff --git a/changes b/changes
index a975954d43b40105363dcf9c80e931fafa658b1d..2f69daeb3a22a2cce07724a0fb8b676852a31cca 100644
--- a/changes
+++ b/changes
@@ -1,3 +1,9 @@
+1.2A.4 beta2
+    ANDROID
+     - added quick icon to clear score with single move
+    BUGS FIXES
+     - fixed crash when re-enabling input/output settings
+
 1.2A.3 beta1
      - added touch interface, adjusted GUI layout to it
     ANDROID
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 831a624cee2d6586edb1cebbe94122c7de8c8e29..a5302b476bb7f3faa6dc0a1c7b9e322ed4e1c2a2 100755
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -344,6 +344,8 @@ void MainWindow::createSettingsDialog() {
 #endif
 			pitchView->setVisible(gl->L->soundViewEnabled);
 			guitar->setVisible(gl->L->guitarEnabled);
+      if (gl->S->isSingleNoteMode) // refresh note name
+        noteName->setNoteName(noteName->getNoteName());
 			m_isPlayerFree = true;
 	} else if (lastWord.contains(QLatin1String("Reset"))) {
       resetConfig = true;
diff --git a/src/score/tmainscore.cpp b/src/score/tmainscore.cpp
index 9f81ae85f64b09f21b796fa38132c491406fc48d..87a8c7ee99fbd7e6e815bb03729a8b2d56924e46 100644
--- a/src/score/tmainscore.cpp
+++ b/src/score/tmainscore.cpp
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2013-2015 by Tomasz Bojczuk                             *
+ *   Copyright (C) 2013-2016 by Tomasz Bojczuk                             *
  *   tomaszbojczuk@gmail.com                                               *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -115,6 +115,7 @@ void TmainScore::acceptSettings() {
 		refreshNoteNames = true;
 	if (Tcore::gl()->S->isSingleNoteMode) {
 		setInsertMode(e_single);
+    setEnableEnharmNotes(Tcore::gl()->S->showEnharmNotes);
 	} else
 		setInsertMode(e_multi);
 // Double accidentals
@@ -866,8 +867,8 @@ void TmainScore::createActions() {
 
 
 void TmainScore::restoreNotesSettings() {
-// 		if (Tcore::gl()->S->enharmNotesColor == -1)
-// 					Tcore::gl()->S->enharmNotesColor = palette().highlight().color();
+  if (Tcore::gl()->S->enharmNotesColor == -1)
+      Tcore::gl()->S->enharmNotesColor = QColor(0, 162, 162); // turquoise
 // 	TscoreNote::setNameColor(Tcore::gl()->S->nameColor);
 	scoreScene()->right()->adjustSize();
 	if (Tcore::gl()->S->pointerColor == -1) {