https://bugs.kde.org/show_bug.cgi?id=436633
--- Comment #3 from wolthera <griffinval...@gmail.com> --- I tried to smooth over some issues with the saving of gbr files by way of this patch: ---------- diff --git a/plugins/impex/brush/KisWdgOptionsBrush.cpp b/plugins/impex/brush/KisWdgOptionsBrush.cpp index 7d833dff0b..682f8984db 100644 --- a/plugins/impex/brush/KisWdgOptionsBrush.cpp +++ b/plugins/impex/brush/KisWdgOptionsBrush.cpp @@ -40,7 +40,7 @@ void KisWdgOptionsBrush::setConfiguration(const KisPropertiesConfigurationSP cfg if (nameLineEdit->text().isEmpty()) { nameLineEdit->setText(cfg->getString("name")); } - colorAsMask->setChecked(cfg->getBool("mask")); + colorAsMask->setChecked(!cfg->getBool(KisImportExportFilter::ImageContainsTransparencyTag, false)); brushStyle->setCurrentIndex(cfg->getInt("brushStyle")); dimensionSpin->setValue(cfg->getInt("dimensions")); ----------------- However, while it may seem to work initially, when I introduce transparency it doesn't work anymore??? Maybe I am misunderstanding how import/exportfilter works :/ -- You are receiving this mail because: You are watching all bug changes.