0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-26 17:59:08 +03:00

Default band's background filling mode changed to transparent

This commit is contained in:
Arin Alexander
2019-03-01 17:32:48 +03:00
parent 1bb6fc8f5a
commit ed28faf784
4 changed files with 22 additions and 5 deletions

View File

@@ -2481,7 +2481,7 @@ CommandIf::Ptr BandMoveFromToCommand::create(PageDesignIntf* page, int from, int
bool BandMoveFromToCommand::doIt()
{
if (page() && from != to) {
if (page() && page()->pageItem() && from != to) {
page()->pageItem()->moveBandFromTo(from, to);
return true;
}