|
15 | 15 | import qtawesome as qta |
16 | 16 |
|
17 | 17 | _icons_specs = { |
18 | | - "new": (("fa.file-o",), {}), |
19 | | - "open": (("fa.folder-open-o",), {}), |
| 18 | + "new": (("fa5.file",), {}), |
| 19 | + "open": (("fa5.folder-open",), {}), |
20 | 20 | # borrowed from spider-ide |
21 | 21 | "autoreload": [ |
22 | | - ("fa.repeat", "fa.clock-o"), |
| 22 | + ("fa5s.redo-alt", "fa5.clock"), |
23 | 23 | { |
24 | 24 | "options": [ |
25 | 25 | {"scale_factor": 0.75, "offset": (-0.1, -0.1)}, |
26 | 26 | {"scale_factor": 0.5, "offset": (0.25, 0.25)}, |
27 | 27 | ] |
28 | 28 | }, |
29 | 29 | ], |
30 | | - "save": (("fa.save",), {}), |
| 30 | + "save": (("fa5.save",), {}), |
31 | 31 | "save_as": ( |
32 | | - ("fa.save", "fa.pencil"), |
| 32 | + ("fa5.save", "fa5s.pencil-alt"), |
33 | 33 | { |
34 | 34 | "options": [ |
35 | 35 | { |
|
39 | 39 | ] |
40 | 40 | }, |
41 | 41 | ), |
42 | | - "run": (("fa.play",), {}), |
43 | | - "delete": (("fa.trash",), {}), |
| 42 | + "run": (("fa5s.play",), {}), |
| 43 | + "debug": (("fa5s.bug",), {}), |
| 44 | + "delete": (("fa5s.trash",), {}), |
44 | 45 | "delete-many": ( |
45 | 46 | ( |
46 | | - "fa.trash", |
47 | | - "fa.trash", |
| 47 | + "fa5s.trash", |
| 48 | + "fa5s.trash", |
48 | 49 | ), |
49 | 50 | { |
50 | 51 | "options": [ |
|
53 | 54 | ] |
54 | 55 | }, |
55 | 56 | ), |
56 | | - "help": (("fa.life-ring",), {}), |
57 | | - "about": (("fa.info",), {}), |
58 | | - "preferences": (("fa.cogs",), {}), |
| 57 | + "help": (("fa5s.life-ring",), {}), |
| 58 | + "about": (("fa5s.info",), {}), |
| 59 | + "preferences": (("fa5s.cogs",), {}), |
59 | 60 | "inspect": ( |
60 | | - ("fa.cubes", "fa.search"), |
| 61 | + ("fa5s.cubes", "fa5s.search"), |
61 | 62 | {"options": [{"scale_factor": 0.8, "offset": (0, 0), "color": "gray"}, {}]}, |
62 | 63 | ), |
63 | | - "screenshot": (("fa.camera",), {}), |
| 64 | + "screenshot": (("fa5s.camera",), {}), |
64 | 65 | "screenshot-save": ( |
65 | | - ("fa.save", "fa.camera"), |
| 66 | + ("fa5.save", "fa5s.camera"), |
66 | 67 | { |
67 | 68 | "options": [ |
68 | 69 | {"scale_factor": 0.8}, |
69 | 70 | {"scale_factor": 0.8, "offset": (0.2, 0.2)}, |
70 | 71 | ] |
71 | 72 | }, |
72 | 73 | ), |
73 | | - "toggle-comment": (("fa.hashtag",), {}), |
74 | | - "search": (("fa.search",), {}), |
| 74 | + "toggle-comment": (("fa5s.hashtag",), {}), |
| 75 | + "search": (("fa5s.search",), {}), |
| 76 | + "arrow-step-over": (("fa5s.step-forward",), {}), |
| 77 | + "arrow-step-in": (("fa5s.angle-down",), {}), |
| 78 | + "arrow-continue": (("fa5s.arrow-right",), {}), |
| 79 | + "clear": (("fa5s.eraser",), {}), |
| 80 | + "clear-2": (("fa5s.broom",), {}), |
75 | 81 | } |
76 | 82 |
|
77 | 83 |
|
|
0 commit comments