From 885fc88aad2b45822bfd9734012b76a36355443f Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Mon, 23 Nov 2015 11:47:33 -0800 Subject: [PATCH] Disable voice messages until iOS gets their act together // FREEBIE --- src/org/thoughtcrime/securesms/components/InputPanel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/thoughtcrime/securesms/components/InputPanel.java b/src/org/thoughtcrime/securesms/components/InputPanel.java index 1067a05089..9e8e98ca91 100644 --- a/src/org/thoughtcrime/securesms/components/InputPanel.java +++ b/src/org/thoughtcrime/securesms/components/InputPanel.java @@ -80,10 +80,10 @@ public class InputPanel extends LinearLayout this.microphoneRecorderView = ViewUtil.findById(this, R.id.recorder_view); this.microphoneRecorderView.setListener(this); - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) { +// if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) { this.microphoneRecorderView.setVisibility(View.GONE); this.microphoneRecorderView.setClickable(false); - } +// } if (TextSecurePreferences.isSystemEmojiPreferred(getContext())) { emojiToggle.setVisibility(View.GONE);