From 4fc6025f1a936e65f71147901263946224ff4961 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 20 Aug 2014 23:33:30 +0200 Subject: [PATCH] Removed styled frame - looks ugly in KDE and is unnecessary --- openlp/plugins/media/forms/mediaclipselectordialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/media/forms/mediaclipselectordialog.py b/openlp/plugins/media/forms/mediaclipselectordialog.py index 2721836fe..aa27b3d1c 100644 --- a/openlp/plugins/media/forms/mediaclipselectordialog.py +++ b/openlp/plugins/media/forms/mediaclipselectordialog.py @@ -138,7 +138,7 @@ class Ui_MediaClipSelector(object): self.media_view_frame = QtGui.QFrame(self.centralwidget) self.media_view_frame.setMinimumSize(QtCore.QSize(665, 375)) self.media_view_frame.setStyleSheet("background-color:black;") - self.media_view_frame.setFrameShape(QtGui.QFrame.StyledPanel) + self.media_view_frame.setFrameShape(QtGui.QFrame.NoFrame) self.media_view_frame.setFrameShadow(QtGui.QFrame.Raised) self.media_view_frame.setObjectName("media_view_frame") self.gridLayout.addWidget(self.media_view_frame, 5, 0, 1, 5)