Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
selections over secondary selections are now displayed in the correct…
… order and can be seen
  • Loading branch information
Richard Jones committed Apr 28, 2009
1 parent a61be1b commit 07770a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/wings_render.erl
Expand Up @@ -208,12 +208,12 @@ render_plain_rest(#dlo{}=D, Wire, SelMode) ->
case Wire of
true ->
gl:disable(?GL_CULL_FACE),
draw_orig_sel(D),
draw_sel(D),
draw_orig_sel(D),
gl:enable(?GL_CULL_FACE);
false ->
draw_orig_sel(D),
draw_sel(D)
draw_sel(D),
draw_orig_sel(D)
end,
draw_vertices(D, SelMode),
draw_hard_edges(D, SelMode),
Expand Down Expand Up @@ -280,8 +280,8 @@ render_smooth(#dlo{work=Work,edges=Edges,smooth=Smooth,transparent=Trans,
false -> ok
end,
draw_hilite(D),
draw_orig_sel(D),
draw_sel(D),
draw_orig_sel(D),
draw_plugins(smooth,D,none).

wire(#we{id=Id}) ->
Expand Down

0 comments on commit 07770a5

Please sign in to comment.