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

Commit c8cdc19e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Settings: Fix long SSID can't display completly on the WLAN device list"

parents ce3ddb80 d1d25c36
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -262,6 +262,9 @@ class AccessPoint extends Preference {
        mSummaryView = (TextView) view.findViewById(com.android.internal.R.id.summary);
        mSummaryView = (TextView) view.findViewById(com.android.internal.R.id.summary);
        mSummaryView.setVisibility(showSummary ? View.VISIBLE : View.GONE);
        mSummaryView.setVisibility(showSummary ? View.VISIBLE : View.GONE);


        final TextView title = (TextView)view.findViewById(com.android.internal.R.id.title);
        title.setSingleLine(false);

        notifyChanged();
        notifyChanged();
    }
    }