Rename OnionShareGui to MainWindow

This commit is contained in:
Micah Lee 2019-10-20 19:41:20 -07:00
parent 30949cf196
commit 4f2ce99417
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
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():