Skip to content

Commit

Permalink
Merge pull request #38 from alexpdev/v0.3
Browse files Browse the repository at this point in the history
V0.3
  • Loading branch information
alexpdev committed Sep 12, 2023
2 parents 7b3e9e4 + 8128131 commit 3e74560
Show file tree
Hide file tree
Showing 24 changed files with 12,008 additions and 726 deletions.
28 changes: 14 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ help:
clean: clean-build ## remove all build, test, coverage and Python artifacts

clean-build: ## remove build artifacts
rm -rfv build/
rm -rfv dist/
rm -rfv .eggs/
rm -rfv *.egg-info
rm -rfv *.egg
rm -rfv **/__pycache__
rm -rfv htmlcov/
rm -rfv .tox/
rm -rfv .pytest_cache
rm -fv **.pyo
rm -fv **.pyc
rm -fv .coverage
rm -fv corbertura.xml
rm -fv coverage.xml
rm -rf build/
rm -rf dist/
rm -rf .eggs/
rm -rf *.egg-info
rm -rf *.egg
rm -rf **/__pycache__
rm -rf htmlcov/
rm -rf .tox/
rm -rf .pytest_cache
rm -f **.pyo
rm -f **.pyc
rm -f .coverage
rm -f corbertura.xml
rm -f coverage.xml

install: ## install packages
pip install --upgrade --no-cache --force-reinstall torrentfileQt QStyler
Expand Down
1 change: 1 addition & 0 deletions QStyler/styler.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ def __init__(self):
font = self.themes_combo.font()
font.setPointSize(10)
self.themes_combo.setFont(font)
self.themes_combo.addItem("", "")
for file in os.listdir(self.themes_dir):
theme_name = os.path.splitext(file)[0]
self.themes_combo.addItem(theme_name, theme_name)
Expand Down
Loading

0 comments on commit 3e74560

Please sign in to comment.