diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index ef7181ee1..1f8e3340e 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -560,6 +560,9 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): """ Called when the search shotcut has been pressed. """ + # Make sure the media_dock is visible. + if not self.media_manager_dock.isVisible(): + self.media_manager_dock.setVisible(True) widget = self.media_tool_box.currentWidget() if widget: widget.on_focus()