Skip to content

Commit

Permalink
update(Settings): Changed some icons for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
crimera committed Aug 25, 2024
1 parent 4ec7f56 commit a4cbe4e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public void buildFeatureFlagsSection(boolean buildCategory){
strRes("delete")+": "+strRes("piko_title_feature_flags"),
"",
Settings.RESET_FLAGS,
"vector_delete_icon",
"ic_vector_trashcan_stroke",
"#DE0025"
)
);
Expand Down Expand Up @@ -674,7 +674,7 @@ public void buildExportSection(boolean buildCategory){
strRes("delete")+": "+strRes("piko_name")+" "+strRes("settings_notification_pref_item_title"),
"",
Settings.RESET_PREF,
"vector_delete_icon",
"ic_vector_trashcan_stroke",
"#DE0025"
)
);
Expand Down Expand Up @@ -721,7 +721,7 @@ public void buildSinglePageSettings(){
strRes("piko_title_feature_flags"),
"",
Settings.FLAGS_SECTION,
"ic_admin_tools_flagged",null
"ic_vector_flag",null
)
);
}
Expand Down Expand Up @@ -807,4 +807,4 @@ public String strEnableRes(String tag) {


//end
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private void init() {

int clr = Color.RED;

if (!iconName.contains("delete")) {
if (!iconName.contains("trashcan")) {
int[] textColorAttr = {context.getResources().getIdentifier("coreColorPrimaryText", "attr", context.getPackageName())};
TypedArray typedValue = context.obtainStyledAttributes(textColorAttr);
clr = typedValue.getColor(0, 0);
Expand Down

0 comments on commit a4cbe4e

Please sign in to comment.