fix guide position in 3d plots in GR

This commit is contained in:
Daniel Schwabeneder 2020-10-16 18:19:31 +02:00
parent 015b48eede
commit 2be5756cb8

View File

@ -1451,7 +1451,7 @@ function gr_label_axis_3d(sp, letter)
x_offset = -gr_axis_width(sp, ax)
y_offset = 0
end
gr_text(x + x_offset, y - y_offset, ax[:guide])
gr_text(x + x_offset, y + y_offset, ax[:guide])
GR.restorestate()
end
end