@@ -111,8 +111,8 @@ class MainActivity : SimpleActivity() {
111111 search_holder.setBackgroundColor(getProperBackgroundColor())
112112
113113 val properPrimaryColor = getProperPrimaryColor()
114- start_conversation_placeholder .setTextColor(properPrimaryColor)
115- start_conversation_placeholder .underlineText()
114+ no_conversations_placeholder_2 .setTextColor(properPrimaryColor)
115+ no_conversations_placeholder_2 .underlineText()
116116 conversations_fastscroller.updateColors(properPrimaryColor)
117117 conversations_progress_bar.setIndicatorColor(properPrimaryColor)
118118 conversations_progress_bar.trackColor = properPrimaryColor.adjustAlpha(LOWER_ALPHA )
@@ -239,7 +239,7 @@ class MainActivity : SimpleActivity() {
239239 storeStateVariables()
240240 getCachedConversations()
241241
242- start_conversation_placeholder .setOnClickListener {
242+ no_conversations_placeholder_2 .setOnClickListener {
243243 launchNewConversation()
244244 }
245245
@@ -378,19 +378,19 @@ class MainActivity : SimpleActivity() {
378378 private fun showOrHideProgress (show : Boolean ) {
379379 if (show) {
380380 conversations_progress_bar.show()
381- conversations_placeholder .beVisible()
382- conversations_placeholder .text = getString(R .string.loading_messages)
381+ no_conversations_placeholder .beVisible()
382+ no_conversations_placeholder .text = getString(R .string.loading_messages)
383383 } else {
384384 conversations_progress_bar.hide()
385- conversations_placeholder .beGone()
385+ no_conversations_placeholder .beGone()
386386 }
387387 }
388388
389389 private fun showOrHidePlaceholder (show : Boolean ) {
390390 conversations_fastscroller.beGoneIf(show)
391- conversations_placeholder .beVisibleIf(show)
392- conversations_placeholder .text = getString(R .string.no_conversations_found)
393- start_conversation_placeholder .beVisibleIf(show)
391+ no_conversations_placeholder .beVisibleIf(show)
392+ no_conversations_placeholder .text = getString(R .string.no_conversations_found)
393+ no_conversations_placeholder_2 .beVisibleIf(show)
394394 }
395395
396396 private fun fadeOutSearch () {
0 commit comments