Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaljurand committed Oct 7, 2018
1 parent 436f3a9 commit 6bdc9c7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/src/main/java/ee/ioc/phon/android/speak/Log.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@

public final class Log {

private Log() {
}

public static final boolean DEBUG = BuildConfig.DEBUG;

public static final String LOG_TAG = "k6nele";
private static final String LOG_TAG = "k6nele";

private Log() {
}

public static void i(String msg) {
if (DEBUG) android.util.Log.i(LOG_TAG, msg);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ public boolean onTouch(View view, MotionEvent evt) {
editor.putInt("keyDialogY", wlp.y);
editor.apply();
break;
default:
break;
}
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ public boolean onTouch(View v, MotionEvent event) {
mCursorType = -1;
mIsLongPress = false;
break;
default:
break;
}
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ public boolean onTouch(View v, MotionEvent event) {
if (mHandler != null) mHandler.removeCallbacks(mTask);
v.setPressed(false);
break;
default:
break;
}
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-et/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
<string name="errorResultCanceled">Katkestatud</string>
<string name="errorCantCreateRecorder">VIGA: lindistaja loomine luhtus</string>
<string name="exceptionMalformedUrl">VIGA: URLi formaat vigane</string>
<string name="errorNetworkUndefined">ERROR: Võrgu IP aadressi pole määratud</string>
<string name="errorNetworkUndefined">VIGA: Võrgu IP aadressi pole määratud</string>
<string name="promptSearch">Öelge veebiotsingu päring</string>
<string name="promptDemo">Öelge nt: %1$s</string>

Expand Down
2 changes: 1 addition & 1 deletion net-speech-api
Submodule net-speech-api updated 1 files
+2 −2 build.gradle

0 comments on commit 6bdc9c7

Please sign in to comment.