Fix crash when changing page color

preferencesAboutTextFull
Craig Watson 9 years ago
parent a673aedbb6
commit d14b556050
  1. 3
      src/domain/UBGraphicsStrokesGroup.cpp

@ -84,7 +84,8 @@ void UBGraphicsStrokesGroup::setColor(const QColor &color, colorType pColorType)
}
}
mDebugText->setBrush(QBrush(color));
if (mDebugText)
mDebugText->setBrush(QBrush(color));
}
QColor UBGraphicsStrokesGroup::color(colorType pColorType) const

Loading…
Cancel
Save