Fixing the icons on the bottom row of the compose fragment

This commit is contained in:
LucasGGamerM
2022-12-31 14:42:57 -03:00
parent 64d24f6002
commit c4d56179f3
3 changed files with 18 additions and 17 deletions

View File

@@ -818,11 +818,11 @@ public class ComposeFragment extends MastodonToolbarFragment implements OnBackPr
}
private void resetPublishButtonText() {
// int publishText = editingStatus==null || redraftStatus ? R.string.publish : R.string.save;
int publishText = editingStatus==null || redraftStatus ? R.string.publish : R.string.save;
// if (publishText == R.string.publish && !GlobalUserPreferences.publishButtonText.isEmpty()) {
// publishButton.setText(GlobalUserPreferences.publishButtonText);
// } else {
// publishButton.setText(publishText);
publishButton.setText(publishText);
// }
}