forked from openlp/openlp
Fix theme bug reported on Redhat bugzilla
bzr-revno: 996
This commit is contained in:
commit
3645c9400e
@ -204,7 +204,7 @@ class Theme(object):
|
|||||||
val = element_text
|
val = element_text
|
||||||
if (element.tag.find(u'Color') > 0 or
|
if (element.tag.find(u'Color') > 0 or
|
||||||
(element.tag.find(u'BackgroundParameter') == 0 and
|
(element.tag.find(u'BackgroundParameter') == 0 and
|
||||||
isinstance(int, val))):
|
isinstance(val, int))):
|
||||||
# convert to a wx.Colour
|
# convert to a wx.Colour
|
||||||
if not delphi_color_change:
|
if not delphi_color_change:
|
||||||
val = QtGui.QColor(
|
val = QtGui.QColor(
|
||||||
|
Loading…
Reference in New Issue
Block a user