mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-22 17:02:21 -05:00
Only prefix message with a space if there's an icon to show
This commit is contained in:
parent
bd932234f5
commit
a75539c344
@ -93,10 +93,7 @@ public class Message {
|
||||
public SpannableString render(Context context)
|
||||
{
|
||||
if (canvas == null) {
|
||||
String prefix = "\n";
|
||||
if (hasIcon()) {
|
||||
prefix = " " + prefix;
|
||||
}
|
||||
String prefix = hasIcon() ? "\n " : "\n";
|
||||
canvas = new SpannableString(prefix + text);
|
||||
if (hasIcon()) {
|
||||
Drawable drawable = context.getResources().getDrawable(icon);
|
||||
|
Loading…
Reference in New Issue
Block a user