Add download progress dialog and some mod loader parse function.
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
from pathlib import Path
|
||||
|
||||
from PySide6 import QtGui
|
||||
from PySide6.QtCore import QSize
|
||||
from PySide6.QtWidgets import QWidget, QVBoxLayout, QComboBox, QListWidget, QPushButton, QLabel, QHBoxLayout
|
||||
|
||||
from core_lib.launcher.object import Launcher as LauncherObject
|
||||
|
||||
class CreateProfile(QWidget):
|
||||
def __init__(self, launcher: "LauncherObject",parent=None):
|
||||
def __init__(self, app, parent=None):
|
||||
super(CreateProfile, self).__init__(parent)
|
||||
self.app = launcher
|
||||
self.app = app
|
||||
|
||||
self.layout = QHBoxLayout()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user