(icon_name)
| 12 | |
| 13 | |
| 14 | def get_icon(icon_name): |
| 15 | icon_path = os.path.join('gui', 'icons', f'{icon_name}.ico') |
| 16 | return QIcon(icon_path) if os.path.exists(icon_path) else QIcon() |
| 17 | |
| 18 | |
| 19 | def create_encryption_combobox(): |
no outgoing calls
no test coverage detected