[android] Use ? for help button, remove logo from help page

Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
Harry Bond
2025-05-21 22:50:05 +01:00
committed by Konstantin Pastbin
parent 22f3cb2da1
commit b943969df1
3 changed files with 11 additions and 9 deletions

View File

@@ -104,11 +104,13 @@ public class MapButtonsController extends Fragment
{
if (Config.isNY() && !TextUtils.isEmpty(Config.getDonateUrl(requireContext())))
helpButton.setImageResource(R.drawable.ic_christmas_tree);
else
helpButton.setImageResource(R.drawable.ic_launcher);
// Keep this button colorful in normal theme.
if (!ThemeUtils.isNightTheme(requireContext()))
helpButton.getDrawable().setTintList(null);
// else
// {
// helpButton.setImageResource(R.drawable.ic_launcher);
// }
// // Keep this button colorful in normal theme.
// if (!ThemeUtils.isNightTheme(requireContext()))
// helpButton.getDrawable().setTintList(null);
}
final View zoomFrame = mFrame.findViewById(R.id.zoom_buttons_container);