Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[SERVER][BUGFIX] Layer order from group
If custom order is not enabled and a group is requested, layers was added in
 the DOM element order. The default endering order is the reverse.

To fix this issue, QgsWMSProjectParser::addLayersFromGroup has to read group
 element children from end (bottom) to start (top).
  • Loading branch information
rldhont committed Sep 15, 2015
1 parent 599632a commit 977d177
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/server/qgswmsprojectparser.cpp
Expand Up @@ -258,7 +258,8 @@ void QgsWMSProjectParser::addLayersFromGroup( const QDomElement& legendGroupElem
{
QMap< int, QDomElement > layerOrderList;
QDomNodeList groupElemChildren = legendGroupElem.childNodes();
for ( int i = 0; i < groupElemChildren.size(); ++i )
// for rendering layers has to be add from bottom (end) to top (start)
for ( int i = groupElemChildren.size()-1; i >= 0 ; --i )
{
QDomElement elem = groupElemChildren.at( i ).toElement();
if ( elem.tagName() == "legendgroup" )
Expand Down

0 comments on commit 977d177

Please sign in to comment.