1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Remove leading space in action bar title of Accounts activity

This commit is contained in:
cketti 2012-12-07 13:08:01 +01:00
parent d3e840a9ee
commit 8100e00523

View File

@ -149,7 +149,7 @@ public class Accounts extends K9ListActivity implements OnItemClickListener {
class AccountsHandler extends Handler {
private void setViewTitle() {
mActionBarTitle.setText(" " + getString(R.string.accounts_title));
mActionBarTitle.setText(getString(R.string.accounts_title));
if (mUnreadMessageCount == 0) {
mActionBarUnread.setVisibility(View.GONE);