From e776f7b2306b345e2fe09b3a3e9ca77d4f08ade1 Mon Sep 17 00:00:00 2001 From: Eric House Date: Thu, 15 Aug 2013 22:20:44 -0700 Subject: [PATCH] comment out toast that's showing on every connection -- too annoying --- .../src/org/eehouse/android/xw4/BoardActivity.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java index 5f6cff5fe..f061ab5fb 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java @@ -1253,10 +1253,14 @@ public class BoardActivity extends XWActivity // All players have now joined the game. The device that // created the room will assign tiles. Then it will be // the first player's turn - toastStr = getString( R.string.msg_relay_all_heref, room ); - if ( devOrder > 1 ) { - naMsg = R.string.not_again_conndall; - naKey = R.string.key_notagain_conndall; + + // Skip this until there's a way to show it only once per game + if ( false ) { + toastStr = getString( R.string.msg_relay_all_heref, room ); + if ( devOrder > 1 ) { + naMsg = R.string.not_again_conndall; + naKey = R.string.key_notagain_conndall; + } } } else if ( nMissing > 0 ) { if ( !m_haveInvited ) {