11from  typing  import  List 
22
3- from  fonticon_fa6  import  FA6S 
43from  qtpy .QtCore  import  QFile , QFileInfo , QSaveFile , Qt , QTextStream 
54from  qtpy .QtWidgets  import  QApplication , QFileDialog , QMessageBox , QTextEdit 
65
@@ -160,7 +159,7 @@ class CommandId:
160159ACTIONS : List [types .Action ] =  [
161160    types .Action (
162161        id = "new_file" ,
163-         icon = FA6S . file_circle_plus ,
162+         icon = "fa6-solid:file-circle-plus" ,
164163        title = "New" ,
165164        keybindings = [types .StandardKeyBinding .New ],
166165        status_tip = "Create a new file" ,
@@ -169,7 +168,7 @@ class CommandId:
169168    ),
170169    types .Action (
171170        id = "open_file" ,
172-         icon = FA6S . folder_open ,
171+         icon = "fa6-solid:folder-open" ,
173172        title = "Open..." ,
174173        keybindings = [types .StandardKeyBinding .Open ],
175174        status_tip = "Open an existing file" ,
@@ -178,7 +177,7 @@ class CommandId:
178177    ),
179178    types .Action (
180179        id = "save_file" ,
181-         icon = FA6S . floppy_disk ,
180+         icon = "fa6-solid:floppy-disk" ,
182181        title = "Save" ,
183182        keybindings = [types .StandardKeyBinding .Save ],
184183        status_tip = "Save the document to disk" ,
@@ -203,7 +202,7 @@ class CommandId:
203202    ),
204203    types .Action (
205204        id = "cut" ,
206-         icon = FA6S . scissors ,
205+         icon = "fa6-solid: scissors"  ,
207206        title = "Cut" ,
208207        keybindings = [types .StandardKeyBinding .Cut ],
209208        enablement = "copyAvailable" ,
@@ -213,7 +212,7 @@ class CommandId:
213212    ),
214213    types .Action (
215214        id = "copy" ,
216-         icon = FA6S . copy ,
215+         icon = "fa6-solid: copy"  ,
217216        title = "Copy" ,
218217        keybindings = [types .StandardKeyBinding .Copy ],
219218        enablement = "copyAvailable" ,
@@ -223,7 +222,7 @@ class CommandId:
223222    ),
224223    types .Action (
225224        id = "paste" ,
226-         icon = FA6S . paste ,
225+         icon = "fa6-solid: paste"  ,
227226        title = "Paste" ,
228227        keybindings = [types .StandardKeyBinding .Paste ],
229228        status_tip = "Paste the clipboard's contents into the current selection" ,
0 commit comments