feat: add documentation, changeable shortcuts

This commit is contained in:
WorldTeacher
2024-10-02 11:19:50 +02:00
parent c7309e047b
commit e7bcce328b
36 changed files with 318 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
from PyQt6.QtCore import QThread, pyqtSignal
from src.utils import launch_documentation
class DocumentationThread(QThread):
def __init__(self):
super().__init__()
def run(self):
launch_documentation()