Skip to content

Commit

Permalink
update files
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Apr 30, 2023
1 parent 323204b commit ed78dbe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion wingetui/__init__.py
Expand Up @@ -34,7 +34,7 @@ class MainApplication(QApplication):

def __init__(self):
try:
super().__init__(sys.argv + ["-platform", f"windows:darkmode=0"])
super().__init__(sys.argv)
self.isDaemon: bool = "--daemon" in sys.argv
self.popup = DraggableWindow()
self.popup.setFixedSize(QSize(600, 400))
Expand Down
10 changes: 8 additions & 2 deletions wingetui/data/contributors.py
Expand Up @@ -15,6 +15,7 @@
"rumplin",
"Satanarious",
"quantumfallout",
"derula",
"flatron4eg",
"harleylara",
"sitiom",
Expand All @@ -25,7 +26,7 @@
{
"name": "marticliment",
"link": "https://github.com/marticliment",
"contributions": 1285
"contributions": 1290
},
{
"name": "ppvnf",
Expand All @@ -35,7 +36,7 @@
{
"name": "panther7",
"link": "https://github.com/panther7",
"contributions": 58
"contributions": 60
},
{
"name": "RavenMacDaddy",
Expand Down Expand Up @@ -92,6 +93,11 @@
"link": "https://github.com/quantumfallout",
"contributions": 1
},
{
"name": "derula",
"link": "https://github.com/derula",
"contributions": 1
},
{
"name": "flatron4eg",
"link": "https://github.com/flatron4eg",
Expand Down
2 changes: 1 addition & 1 deletion wingetui/uiSections.py
Expand Up @@ -2960,7 +2960,7 @@ def saveLog():

exportButtom = QPushButton(_("Export log as a file"))
exportButtom.setFixedWidth(200)
exportButtom.clicked.connect(lambda: saveLog())
exportButtom.clicked.connect(saveLog)

def copyLog():
try:
Expand Down

0 comments on commit ed78dbe

Please sign in to comment.