Files
test2/source/blender
Germano e6838ecc26 Fix T53512: Vertices with index 0 were not being selected
Bug introduced on rB9f5bf197a0c3.
The offset for selection of vertices (`bm_vertoffs`) starts where the offset o edges ends (`bm_wireoffs`).
However, the `bm_wireoffs` depends on the offset of face selection (`bm_solidoffs`).

Before the commit that introduced the bug, the drawn of edges (in backbuff) was always computed along with the `bm_wireoffs`:
```
bm_wireoffs = bm_solidoffs + em->bm->totedge;
```

Now that the edges are not always drawn in backbuff, `bm_wireoffs` has to start from `bm_solidoffs`.
2017-12-08 12:42:00 -02:00
..
2016-01-04 14:20:48 +05:00
2017-11-18 17:22:54 +11:00
2017-12-07 11:51:46 -02:00
2017-12-07 15:52:59 +11:00
2017-12-07 15:52:59 +11:00
2017-12-04 16:37:31 +11:00
2017-12-07 15:52:59 +11:00
2017-09-22 16:40:05 -04:00