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

Commit a013a98f authored by Amith Yamasani's avatar Amith Yamasani
Browse files

Fix the nested preferences title. Again.

Made a mistake when refactoring just before checkin. ! ?
parent f7c886b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ public final class PreferenceScreen extends PreferenceGroup implements AdapterVi

        // Set the title bar if title is available, else no title bar
        final CharSequence title = getTitle();
        Dialog dialog = mDialog = new Dialog(context, !TextUtils.isEmpty(title)
        Dialog dialog = mDialog = new Dialog(context, TextUtils.isEmpty(title)
                ? com.android.internal.R.style.Theme_NoTitleBar
                : com.android.internal.R.style.Theme);
        dialog.setContentView(listView);