Fix message compose hint on fullscreen.

Fixes #5294
Closes #5348
master
Niko Lockenvitz 2020-07-24 18:36:28 +02:00 committed by Greyson Parrelli
parent 26868ae668
commit e153b0ab78
1 changed files with 1 additions and 1 deletions

View File

@ -173,12 +173,12 @@ public class ComposeText extends EmojiEditText {
inputType = (inputType & ~InputType.TYPE_MASK_VARIATION) | InputType.TYPE_TEXT_VARIATION_SHORT_MESSAGE;
}
setInputType(inputType);
setImeOptions(imeOptions);
setHint(transport.getComposeHint(),
transport.getSimName().isPresent()
? getContext().getString(R.string.conversation_activity__from_sim_name, transport.getSimName().get())
: null);
setInputType(inputType);
}
@Override