Fix: background_color

This commit is contained in:
Emanuele 2020-12-21 21:49:27 +01:00
parent c67cbb0007
commit ea3a40af3b

View file

@ -66,7 +66,7 @@ class rMViewApp(QApplication):
self.setWindowIcon(QIcon(':/assets/rmview.svg'))
self.viewer = QtImageViewer()
if 'bg_color' in self.config:
if 'background_color' in self.config:
self.viewer.setBackgroundBrush(QBrush(QColor(self.config.get('background_color'))))
act = QAction('Clone current frame', self)
act.triggered.connect(self.cloneViewer)