]> git.ktnx.net Git - mobile-ledger-staging.git/commitdiff
remove bold style from default commodity setting
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 21 May 2020 16:20:11 +0000 (19:20 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 21 May 2020 16:20:11 +0000 (19:20 +0300)
makes it stand out without reason

app/src/main/java/net/ktnx/mobileledger/ui/profiles/ProfileDetailFragment.java

index 6ead2af668029934d22046ced859dc746df2f361..7a8dc50e6316c82fc08442a2682d6d5045684b81 100644 (file)
@@ -586,7 +586,7 @@ public class ProfileDetailFragment extends Fragment {
     private void setDefaultCommodity(@NonNull @NotNull String name) {
         defaultCommoditySet = true;
         defaultCommodity.setText(name);
-        defaultCommodity.setTypeface(defaultCommodity.getTypeface(), Typeface.BOLD);
+        defaultCommodity.setTypeface(Typeface.DEFAULT);
     }
     interface TextChangeSyncProc {
         void onTextChanged(String text);