Skip to content

Commit

Permalink
Tables: fix FixRowGroupsOrder()
Browse files Browse the repository at this point in the history
A 2nd <tr> in a <thead> was moved above the first <tr>
(the fix is just how it is done for <tfoot>).
  • Loading branch information
poire-z committed May 9, 2022
1 parent 950838a commit de482f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crengine/src/lvrend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,8 @@ class CCRTable {
if ( j != dest_idx ) {
rows.move(dest_idx, j); // move(indexTo, indexFrom)
rows_rendering_reordered = true;
dest_idx++;
}
dest_idx++;
group_met = true;
}
else if ( group_met ) {
Expand Down

0 comments on commit de482f9

Please sign in to comment.