Designed the GUI settings dialog, but none of it does anything yet

This commit is contained in:
Micah Lee 2016-12-28 18:44:41 -08:00
parent 1928bd80de
commit e9865f8561
3 changed files with 246 additions and 2 deletions

View file

@ -20,6 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
from PyQt5 import QtCore, QtWidgets
from onionshare import strings
from .settings_dialog import SettingsDialog
class Menu(QtWidgets.QMenuBar):
"""
@ -39,7 +40,7 @@ class Menu(QtWidgets.QMenuBar):
"""
Settings action triggered.
"""
print("Settings clicked")
SettingsDialog()
def quit(self):
"""