Making it not show the text when the publishButton is relocated

This commit is contained in:
LucasGGamerM 2022-12-31 14:52:19 -03:00
parent c4d56179f3
commit 8fec3fe56c
1 changed files with 3 additions and 1 deletions

View File

@ -822,7 +822,9 @@ public class ComposeFragment extends MastodonToolbarFragment implements OnBackPr
// if (publishText == R.string.publish && !GlobalUserPreferences.publishButtonText.isEmpty()) { // if (publishText == R.string.publish && !GlobalUserPreferences.publishButtonText.isEmpty()) {
// publishButton.setText(GlobalUserPreferences.publishButtonText); // publishButton.setText(GlobalUserPreferences.publishButtonText);
// } else { // } else {
if(!GlobalUserPreferences.relocatePublishButton){
publishButton.setText(publishText); publishButton.setText(publishText);
}
// } // }
} }