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

Commit 407d6d7e authored by Vincent Breitmoser's avatar Vincent Breitmoser
Browse files

incorporate feedback

parent 485029c5
Loading
Loading
Loading
Loading
+72 −66
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <RelativeLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
@@ -85,3 +89,5 @@
            style="?android:textAppearanceMedium" />

    </RelativeLayout>

</ScrollView>
+1 −1
Original line number Diff line number Diff line
@@ -335,6 +335,6 @@ public class OpenPgpAppPreference extends DialogPreference {
        Intent intent = new Intent("org.openintents.openpgp.IOpenPgpService");
        intent.setPackage(PACKAGE_NAME_APG);
        List<ResolveInfo> resInfo = context.getPackageManager().queryIntentServices(intent, 0);
        return !resInfo.isEmpty();
        return resInfo != null && !resInfo.isEmpty();
    }
}