try other icons...

This commit is contained in:
maximator 2026-02-18 19:06:39 +01:00
parent 23110383c2
commit 45c1d69a3f
4 changed files with 7 additions and 2 deletions

View file

@ -45,4 +45,9 @@ pip install -e .
### UI with QT Designer
Save UI design from QT designer as `ui_*_.ui` file and then convert them into python using:
`pyuic6 -x <file_path>.ui -o <file_path>.py `
`pyuic6 -x <file_path>.ui -o <file_path>.py`
### Code quality
Install mypy, black and flake8 into your IDE (also need flake8-pyproject to get pyproject.toml conf).
You can manually run them with `mypy .` or `flake8 .` from the project's root directory.