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

Commit da52162e authored by Fan Zhang's avatar Fan Zhang Committed by android-build-merger
Browse files

Merge "Fix an RTL issue in Network dashboard's summary text." into pi-dev am: d743f206

am: fc47444c

Change-Id: I0de8b7e6780768fe32fe5fe0eb3ae42c2f78f8d4
parents cbcbb74a fc47444c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ import android.app.Fragment;
import android.content.Context;
import android.provider.SearchIndexableResource;
import android.support.annotation.VisibleForTesting;
import android.text.BidiFormatter;
import android.util.Log;

import com.android.internal.logging.nano.MetricsProto;
@@ -174,7 +175,8 @@ public class NetworkDashboardFragment extends DashboardFragment implements
        @Override
        public void setListening(boolean listening) {
            if (listening) {
                String summary = mContext.getString(R.string.wifi_settings_title);
                String summary = BidiFormatter.getInstance()
                        .unicodeWrap(mContext.getString(R.string.wifi_settings_title));
                if (mMobileNetworkPreferenceController.isAvailable()) {
                    final String mobileSettingSummary = mContext.getString(
                            R.string.network_dashboard_summary_mobile);