Skip to content

Commit

Permalink
widget list summary
Browse files Browse the repository at this point in the history
  • Loading branch information
forrestguice committed Oct 13, 2024
1 parent 8b6fa24 commit de205ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public static MatrixCursor createWidgetListCursor(Context context, String[] colu
for (int appWidgetID : widgetIDs)
{
ColorValues colors = colorCollection.getSelectedColors(context, appWidgetID);
String label = (colors != null ? colors.getLabel() : null);
String label = (colors != null ? colors.getID() : null);
String formatString = summary[i] + " (%s)";
String summary0 = (label != null ? String.format(formatString, label) : summary[i]);

Expand Down

0 comments on commit de205ce

Please sign in to comment.