Fix appearing quick buttons when typing ":"
This commit is contained in:
parent
5b069f5245
commit
1f122efaee
1 changed files with 1 additions and 1 deletions
|
@ -4495,7 +4495,7 @@ public class ConversationFragment extends XmppFragment
|
|||
final SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(activity);
|
||||
ViewGroup.LayoutParams params = binding.threadIdenticonLayout.getLayoutParams();
|
||||
if (identiconWidth < 0) identiconWidth = params.width;
|
||||
if (hasAttachments || binding.textinput.getText().toString().replaceFirst("^(\\w|[, ])+:\\s*", "").length() > 0) {
|
||||
if (hasAttachments || !binding.textinput.getText().toString().isEmpty()) {
|
||||
binding.conversationViewPager.setCurrentItem(0);
|
||||
params.width = conversation.getThread() == null ? 0 : identiconWidth;
|
||||
binding.quickButtons.setVisibility(GONE);
|
||||
|
|
Loading…
Reference in a new issue