Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1d77b85 authored by Mark Harman's avatar Mark Harman
Browse files

Dialog for poor magenetic sensor dialog wasn't showing any text.

parent 611fb98e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -49,6 +49,7 @@
<pre>
Version 1.55 (Work in progress)

FIXED   Dialog for poor magenetic sensor dialog wasn't showing any text.
FIXED   Ensure the info text for capture progress in x- extension modes remains visible until 100%.
UPDATED Shutter button now changes to a red square when recording video.
UPDATED Smooth zoom transition when using zoom seekbar (for Camera2 API).
+5 −0
Original line number Diff line number Diff line
@@ -3060,6 +3060,11 @@ public class MainUI {
        alertDialog.setTitle(title_id);
        if( info_id != 0 )
            alertDialog.setMessage(info_id);
        else {
            // Setting an empty string here is still needed to allow setting a message later after it's been created.
            // Needed for MagneticSensor's dialog
            alertDialog.setMessage("");
        }
        alertDialog.setPositiveButton(android.R.string.ok, null);
        alertDialog.setNegativeButton(R.string.dont_show_again, new DialogInterface.OnClickListener() {
            @Override