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

Commit 0c2cadbd authored by mydongistiny's avatar mydongistiny Committed by Michael W
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 6150a149
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -50,6 +50,9 @@
    <string name="global_action_current_user">Current</string>
    <string name="global_action_users">Users</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
@@ -333,7 +333,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 {