summaryrefslogtreecommitdiffstats
path: root/app/src/main/java/fr/gouv/etalab/mastodon/activities/ShowAccountActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/fr/gouv/etalab/mastodon/activities/ShowAccountActivity.java')
-rw-r--r--app/src/main/java/fr/gouv/etalab/mastodon/activities/ShowAccountActivity.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/src/main/java/fr/gouv/etalab/mastodon/activities/ShowAccountActivity.java b/app/src/main/java/fr/gouv/etalab/mastodon/activities/ShowAccountActivity.java
index b39d7c129..f3a4b0191 100644
--- a/app/src/main/java/fr/gouv/etalab/mastodon/activities/ShowAccountActivity.java
+++ b/app/src/main/java/fr/gouv/etalab/mastodon/activities/ShowAccountActivity.java
@@ -261,10 +261,10 @@ public class ShowAccountActivity extends BaseActivity implements OnPostActionInt
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, android.content.Context.MODE_PRIVATE);
int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK);
accountUrl = account.getUrl();
- if( theme == Helper.THEME_BLACK){
- changeDrawableColor(getApplicationContext(), R.drawable.ic_lock_outline,R.color.dark_icon);
+ if( theme == THEME_LIGHT){
+ changeDrawableColor(getApplicationContext(), R.drawable.ic_lock_outline,R.color.black);
}else {
- changeDrawableColor(getApplicationContext(), R.drawable.ic_lock_outline,R.color.mastodonC4);
+ changeDrawableColor(getApplicationContext(), R.drawable.ic_lock_outline,R.color.mastodonC3);
}
String accountIdRelation = accountId;
if( MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) {
@@ -309,10 +309,10 @@ public class ShowAccountActivity extends BaseActivity implements OnPostActionInt
if(account.isLocked()){
Drawable img = ContextCompat.getDrawable(getApplicationContext(), R.drawable.ic_lock_outline);
assert img != null;
- img.setBounds(0,0,(int) (20 * scale + 0.5f),(int) (20 * scale + 0.5f));
- account_dn.setCompoundDrawables( img, null, null, null);
+ img.setBounds(0,0,(int) (16 * scale + 0.5f),(int) (16 * scale + 0.5f));
+ account_un.setCompoundDrawables( null, null, img, null);
}else{
- account_dn.setCompoundDrawables( null, null, null, null);
+ account_un.setCompoundDrawables( null, null, null, null);
}
//Peertube account watched by a Mastodon account