Skip to content

Commit

Permalink
Fixed Automatically Read Combatlog feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraust committed Mar 28, 2024
1 parent e615725 commit 0c93c25
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions OSCRUI/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ def __init__(self, theme, args, path, config, versions) -> None:
self.window.show()
if self.settings.value('auto_scan', type=bool):
QTimer.singleShot(
100, self.window,
lambda: self.analyze_log_callback(path=self.entry.text(), parser_num=1))
100,
lambda: self.analyze_log_callback(path=self.entry.text(), parser_num=1)
)

def run(self) -> int:
"""
Expand Down

0 comments on commit 0c93c25

Please sign in to comment.