Skip to content
This repository has been archived by the owner on Feb 8, 2025. It is now read-only.

Commit

Permalink
app info dialog fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearfog committed Mar 15, 2024
1 parent 4de094b commit 4c67c31
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public InfoDialog() {
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.dialog_app_info, container, false);
TextView appInfo = view.findViewById(R.id.settings_app_info);
appInfo.setText(" V");
appInfo.setText(R.string.app_name);
appInfo.append(" v");
appInfo.append(BuildConfig.VERSION_NAME);
AppStyles.setTheme((ViewGroup) view);
return view;
Expand Down

0 comments on commit 4c67c31

Please sign in to comment.