Skip to content
Snippets Groups Projects
Commit 0bd929dc authored by Sébastien Helleu's avatar Sébastien Helleu
Browse files

Add message "Not yet implemented" when clicking on "Preferences" button (closes #1)

parent 3039e304
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -73,6 +73,7 @@ class MainWindow(QTGUI.QMainWindow):
 
self.about_dialog = None
self.connection_dialog = None
self.preferences_dialog = None
 
# network
self.network = Network()
Loading
Loading
@@ -196,7 +197,10 @@ class MainWindow(QTGUI.QMainWindow):
 
def open_preferences_dialog(self):
"""Open a dialog with preferences."""
pass # TODO
# TODO: implement the preferences dialog box
messages = ['Not yet implemented!',
'']
self.preferences_dialog = AboutDialog('Preferences', messages, self)
 
def save_connection(self):
"""Save connection configuration."""
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment