#5961 Color Legend : Improve default color legend for contour plots

This commit is contained in:
Magne Sjaastad
2020-08-05 16:14:25 +02:00
parent 860e6d54a9
commit 6a6a093d05
4 changed files with 38 additions and 23 deletions

View File

@@ -699,12 +699,12 @@ void RimRegularLegendConfig::updateCategoryItems()
cvf::Color3ub ubColor( item->color() );
categories.push_back( std::make_tuple( item->itemName(), item->categoryValue(), ubColor ) );
}
// Reverse the categories to make the ordering identical to items in project tree
std::reverse( categories.begin(), categories.end() );
setCategoryItems( categories );
}
// Reverse the categories to make the ordering identical to items in project tree
std::reverse( categories.begin(), categories.end() );
setCategoryItems( categories );
}
//--------------------------------------------------------------------------------------------------