use custom select all icon

This commit is contained in:
2022-09-03 17:57:02 +02:00
parent 11f4262b96
commit 59c3170757
2 changed files with 13 additions and 1 deletions

View File

@@ -195,7 +195,7 @@ class InnerBigText(QWidget):
copy_to_file.setDisabled(not self._has_selection())
menu.addAction(copy_to_file)
select_all = QAction(Icon.fromTheme("edit-select-all"), _("Select &All"), self,
select_all = QAction(Icon("icons/myicons/select-all.svg"), _("Select &All"), self,
triggered=self._select_all)
select_all.setShortcut("CTRL+A")
menu.addAction(select_all)