File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,17 @@ ImageSource IconImage(string iconName)
29
29
return source ;
30
30
}
31
31
32
- Images . Add ( - 3 , IconImage ( "Passive_Negative_3_icon.png" ) ) ;
33
- Images . Add ( - 2 , IconImage ( "Passive_Negative_2_icon.png" ) ) ;
34
- Images . Add ( - 1 , IconImage ( "Passive_Negative_1_icon.png" ) ) ;
32
+ images = new Dictionary < int , ImageSource > ( ) ;
35
33
36
- Images . Add ( 0 , IconImage ( "Passive_Positive_1_icon.png" ) ) ;
34
+ images . Add ( - 3 , IconImage ( "Passive_Negative_3_icon.png" ) ) ;
35
+ images . Add ( - 2 , IconImage ( "Passive_Negative_2_icon.png" ) ) ;
36
+ images . Add ( - 1 , IconImage ( "Passive_Negative_1_icon.png" ) ) ;
37
37
38
- Images . Add ( 1 , IconImage ( "Passive_Positive_1_icon.png" ) ) ;
39
- Images . Add ( 2 , IconImage ( "Passive_Positive_2_icon.png" ) ) ;
40
- Images . Add ( 3 , IconImage ( "Passive_Positive_3_icon.png" ) ) ;
38
+ images . Add ( 0 , IconImage ( "Passive_Positive_1_icon.png" ) ) ;
39
+
40
+ images . Add ( 1 , IconImage ( "Passive_Positive_1_icon.png" ) ) ;
41
+ images . Add ( 2 , IconImage ( "Passive_Positive_2_icon.png" ) ) ;
42
+ images . Add ( 3 , IconImage ( "Passive_Positive_3_icon.png" ) ) ;
41
43
}
42
44
43
45
return images ;
You can’t perform that action at this time.
0 commit comments