--Bug fixes:

-Crash on linux when saving style due to null pointer in m_Theme variable.
This commit is contained in:
mfeemster 2015-11-25 14:27:49 -08:00
parent 7269d2176a
commit cbead15e18

View File

@ -53,6 +53,7 @@ QssDialog::QssDialog(Fractorium* parent) :
{
ui->setupUi(this);
m_Parent = parent;
m_Theme = nullptr;
m_LastStyle = m_Parent->styleSheet();
setWindowTitle("QSS Editor - default.qss");
connect(ui->QssEdit, SIGNAL(textChanged()), this, SLOT(SlotTextChanged()));