Rename OnionShareGui to MainWindow

This commit is contained in:
Micah Lee 2019-10-20 19:41:20 -07:00
parent ef6c7e280e
commit 0e44020bb6
5 changed files with 22 additions and 22 deletions

View file

@ -31,7 +31,7 @@ from onionshare.onion import Onion
from onionshare.onionshare import OnionShare
from .widgets import Alert
from .onionshare_gui import OnionShareGui
from .main_window import MainWindow
class Application(QtWidgets.QApplication):
@ -164,7 +164,7 @@ def main():
app = OnionShare(common, onion, local_only)
# Launch the gui
gui = OnionShareGui(common, onion, qtapp, app, filenames, config, local_only)
gui = MainWindow(common, onion, qtapp, app, filenames, config, local_only)
# Clean up when app quits
def shutdown():