Add modulations

This commit is contained in:
alessandro90
2018-11-11 17:55:14 +01:00
parent 142297da2f
commit 2f4e72c8bd
3 changed files with 164 additions and 1 deletions

View File

@@ -269,7 +269,7 @@ class MyApp(QMainWindow, Ui_MainWindow):
self.url_button.clicked.connect(self.go_to_web_page_signal)
# Set modulation TreeView
# Set mode TreeView
self.set_mode_tree_widget()
self.mode_tree_widget.itemSelectionChanged.connect(self.manage_mode_selections)
@@ -279,6 +279,10 @@ class MyApp(QMainWindow, Ui_MainWindow):
self.include_unknown_modes_btn])
self.apply_remove_mode_filter_btn.clicked.connect(self.display_signals)
# Set modulation filter screen.
self.modulation_list.addItems(Constants.MODULATIONS)
# ##########################################################################################
self.show()