mirror of
https://github.com/moparisthebest/Yaaic
synced 2025-01-07 19:58:10 -05:00
ConversationActivity: Use same font size for EditText as for conversation.
This commit is contained in:
parent
4831e71567
commit
8fc10e0419
@ -233,10 +233,10 @@ public class ConversationActivity extends SherlockActivity implements ServiceCon
|
||||
server.getConversation(ServerInfo.DEFAULT_NAME).setHistorySize(historySize);
|
||||
}
|
||||
|
||||
float fontSize = settings.getFontSize() * density;
|
||||
indicator.setTextSize(fontSize);
|
||||
float fontSize = settings.getFontSize();
|
||||
indicator.setTextSize(fontSize * density);
|
||||
|
||||
input.setTextSize(fontSize);
|
||||
input.setTextSize(settings.getFontSize());
|
||||
input.setTypeface(Typeface.MONOSPACE);
|
||||
|
||||
// Optimization : cache field lookups
|
||||
|
Loading…
Reference in New Issue
Block a user