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

Unverified Commit 38aaf134 authored by mydongistiny's avatar mydongistiny Committed by Michael Bestas
Browse files

SystemUI: Update string for add tiles with one click

The QS panel explains how to add/remove tiles, however after
'SystemUI: Allow user to add/remove QS with one click' the
description is wrong. Update the string to suggest both ways.

Change-Id: I2912e9254f9ed14436119addc913fe9907dc7f4e
parent 3df32341
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -53,6 +53,9 @@
    <!-- Status bar - icons -->
    <string name="status_bar_icons_title">Status bar icons</string>

    <!-- Label for area where tiles can be added to the qs panel -->
    <string name="drag_or_tap_to_add_tiles">Hold &amp; drag or tap to add tiles</string>

    <!-- Custom QS tiles -->
    <!-- Ambient display QS tile -->
    <string name="quick_settings_ambient_display_label">Ambient display</string>
+1 −1
Original line number Diff line number Diff line
@@ -344,7 +344,7 @@ public class TileAdapter extends RecyclerView.Adapter<Holder> implements TileSta
            final String titleText;
            Resources res = mContext.getResources();
            if (mCurrentDrag == null) {
                titleText = res.getString(R.string.drag_to_add_tiles);
                titleText = res.getString(R.string.drag_or_tap_to_add_tiles);
            } else if (!canRemoveTiles() && mCurrentDrag.getAdapterPosition() < mEditIndex) {
                titleText = res.getString(R.string.drag_to_remove_disabled, mMinNumTiles);
            } else {