Skip to content

Commit

Permalink
Only disable inactive *push* group conversations.
Browse files Browse the repository at this point in the history
  • Loading branch information
moxie0 committed Feb 23, 2014
1 parent c36b586 commit 9298dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/thoughtcrime/securesms/ConversationActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ private void initializeDraft() {
}

private void initializeEnabledCheck() {
boolean enabled = !(isGroupConversation() && !isActiveGroup());
boolean enabled = !(isPushGroupConversation() && !isActiveGroup());
composeText.setEnabled(enabled);
sendButton.setEnabled(enabled);
}
Expand Down

0 comments on commit 9298dde

Please sign in to comment.