mirror of
https://github.com/marcriera/ddgo-converter.git
synced 2025-05-03 23:17:04 +02:00
Remove config, UI improvements
This commit is contained in:
parent
8c875d3b8d
commit
b6a1a9f5bb
7 changed files with 49 additions and 48 deletions
|
@ -3,14 +3,12 @@
|
|||
import sys
|
||||
from PyQt5.QtWidgets import QApplication
|
||||
from gui.main import MainWindow
|
||||
from handlers.config import ConfigHandler
|
||||
from handlers.gamepad import GamepadHandler
|
||||
|
||||
class App(QApplication):
|
||||
def __init__(self, sys_argv):
|
||||
super(App, self).__init__(sys_argv)
|
||||
self.config = ConfigHandler("config.json")
|
||||
self.main_view = MainWindow(GamepadHandler, self.config)
|
||||
self.main_view = MainWindow(GamepadHandler)
|
||||
self.main_view.show()
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue