Skip to content

Commit

Permalink
Disable voice messages until iOS gets their act together
Browse files Browse the repository at this point in the history
// FREEBIE
  • Loading branch information
moxie0 committed Nov 23, 2015
1 parent 69ee4cb commit 885fc88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/thoughtcrime/securesms/components/InputPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ public void onFinishInflate() {
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);
Expand Down

1 comment on commit 885fc88

@rmueller83
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@moxie0 Isn't it possible to re-enable this feature now since the iOS client has implemented some improvements?
signalapp/SignalServiceKit#26
signalapp/Signal-iOS#1321

Please sign in to comment.