Skip to content

Commit

Permalink
Fix typo in icon file name (flutter#6705)
Browse files Browse the repository at this point in the history
At least, I think this fixes it. There was only one occurrence of
"frefresh_items" in the project. The icon file name does not begin with
'f'.

Fixes flutter#6693

(Yes, I know I need to clean up my local repo. Didn't want to
accidentally destroy it before I got the release out.)
  • Loading branch information
stevemessick authored Apr 3, 2023
1 parent a83d330 commit 40955fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flutter-idea/src/icons/FlutterIcons.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private static Icon load(String path) {

public static final Icon Phone = load("/icons/phone.png");
public static final Icon Feedback = load("/icons/feedback.png");
public static final Icon RefreshItems = load("/icons/frefresh_items.png");
public static final Icon RefreshItems = load("/icons/refresh_items.png");

public static final Icon Dart_16 = load("/icons/dart_16.svg");

Expand Down

0 comments on commit 40955fa

Please sign in to comment.