From 2f43ec5cf0122b1bc8a56b914430e61206db7c20 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 27 Jan 2019 16:33:12 +0000 Subject: [PATCH] more fixes --- openlp/core/ui/media/playertab.py | 2 +- openlp/core/ui/settingsform.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/media/playertab.py b/openlp/core/ui/media/playertab.py index 05836abfd..47a8619b6 100644 --- a/openlp/core/ui/media/playertab.py +++ b/openlp/core/ui/media/playertab.py @@ -54,7 +54,7 @@ class PlayerTab(SettingsTab): """ Constructor """ - self.media_players = Registry().get('media_controller').media_players + # self.media_players = Registry().get('media_controller').media_players self.saved_used_players = None self.icon_path = UiIcons().player player_translated = translate('OpenLP.PlayerTab', 'Players') diff --git a/openlp/core/ui/settingsform.py b/openlp/core/ui/settingsform.py index 31f387f83..17a1c05fe 100644 --- a/openlp/core/ui/settingsform.py +++ b/openlp/core/ui/settingsform.py @@ -160,7 +160,7 @@ class SettingsForm(QtWidgets.QDialog, Ui_SettingsDialog, RegistryProperties): self.themes_tab = ThemesTab(self) self.projector_tab = ProjectorTab(self) self.advanced_tab = AdvancedTab(self) - self.player_tab = PlayerTab(self) + # self.player_tab = PlayerTab(self) self.api_tab = ApiTab(self) self.screens_tab = ScreensTab(self) except Exception as e: