Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpdev committed Sep 12, 2023
1 parent 2a52f49 commit 8128131
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 1,292 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
3 changes: 1 addition & 2 deletions QStyler/styler.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from PySide6.QtWidgets import (QApplication, QComboBox, QFileDialog,
QHBoxLayout, QLabel, QListWidget,
QListWidgetItem, QSlider, QTextEdit, QToolBar,
QVBoxLayout, QWidget, QMessageBox)
QVBoxLayout, QWidget)

from QStyler.dialog import NewDialog, RenameDialog
from QStyler.utils import (ParsingError, QssParser, apply_stylesheet, get_icon,
Expand Down Expand Up @@ -394,7 +394,6 @@ def __init__(self, parent=None):

def save_sheet(self):
"""Save the current content of the editor to theme doc."""

content = self.editor.toPlainText()
parser = QssParser(content)
results = parser.results
Expand Down
68 changes: 0 additions & 68 deletions QStyler/themes/DarkLime.json
Original file line number Diff line number Diff line change
Expand Up @@ -492,73 +492,5 @@
},
"QTableView::item:hover": {
"color": "#8cf944"
},
"QLabel#gamelist_icon_background_color": {
"color": "transparent"
},
"QLabel#thumbnail_icon_color": {
"color": "#23262d"
},
"QTextEdit#log_frame": {
"background-color": "#23262d"
},
"QLabel#log_level_always": {
"color": "#f8f8f8"
},
"QLabel#log_level_fatal": {
"color": "#ff00ff"
},
"QLabel#log_level_error": {
"color": "#ff007a"
},
"QLabel#log_level_todo": {
"color": "#f2d571"
},
"QLabel#log_level_success": {
"color": "#8cf944"
},
"QLabel#log_level_warning": {
"color": "#ff6000"
},
"QLabel#log_level_notice": {
"color": "#FFFFFF"
},
"QLabel#log_level_trace": {
"color": "#2d3038"
},
"QLabel#log_stack": {
"color": "#3498d8"
},
"QTextEdit#tty_frame": {
"background-color": "#23262d"
},
"QLabel#tty_text": {
"color": "#f8f8f8"
},
"QLabel#debugger_frame_breakpoint": {},
"QLabel#debugger_frame_pc": {},
"QTreeView::branch:has-children:!has-siblings:closed": {
"border-image": "none"
},
"QTreeView::branch:closed:has-children:has-siblings": {
"border-image": "none"
},
"QTreeView::branch:open:has-children:!has-siblings": {
"border-image": "none"
},
"QTreeView::branch:open:has-children:has-siblings": {
"border-image": "none"
},
"QTreeView::branch:has-children:!has-siblings:closed:hover": {
"border-image": "none"
},
"QTreeView::branch:closed:has-children:has-siblings:hover": {
"border-image": "none"
},
"QTreeView::branch:open:has-children:!has-siblings:hover": {
"border-image": "none"
},
"QTreeView::branch:open:has-children:has-siblings:hover": {
"border-image": "none"
}
}
Loading

0 comments on commit 8128131

Please sign in to comment.