Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Rename duplicate Ui_MainWindow (settings) to Ui_SettingsWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed May 27, 2020
1 parent c4ba003 commit 7a69964
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guiscrcpy/ux/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
from PyQt5 import QtCore
from PyQt5.QtWidgets import QMainWindow, QFileDialog, QDialog

from guiscrcpy.ui.settings import Ui_MainWindow
from guiscrcpy.ux import Ui_SettingsWindow


class InterfaceSettings(QMainWindow, Ui_MainWindow):
class InterfaceSettings(QMainWindow, Ui_SettingsWindow):
# there was a Dialog in the bracket
def __init__(self, parent):
QMainWindow.__init__(self)
Ui_MainWindow.__init__(self)
Ui_SettingsWindow.__init__(self)
self.setupUi(self)
self.parent = parent
self.commands = []
Expand Down

0 comments on commit 7a69964

Please sign in to comment.