fix fill_z for shapes (draw colorbar once)

This commit is contained in:
Daniel Schwabeneder 2017-09-26 17:18:35 +02:00
parent 5f84865365
commit ea6ab46a13

View File

@ -1100,8 +1100,6 @@ function gr_display(sp::Subplot{GRBackend}, w, h, viewport_canvas)
# get the segments
xseg, yseg = x[rng], y[rng]
@show xseg
@show yseg
# draw the interior
gr_set_fill(get_fillcolor(sp, series, i))
@ -1111,9 +1109,9 @@ function gr_display(sp::Subplot{GRBackend}, w, h, viewport_canvas)
gr_set_line(series[:linewidth], :solid, get_linecolor(sp, series, i))
GR.polyline(xseg, yseg)
end
gr_set_line(1, :solid, yaxis[:foreground_color_axis])
cmap && gr_colorbar(sp, clims)
end
gr_set_line(1, :solid, yaxis[:foreground_color_axis])
cmap && gr_colorbar(sp, clims)
elseif st == :image