Merge pull request #2998 from daschw/gr-ticks

GR: handle tick labels for `ticks == nothing`
This commit is contained in:
Daniel Schwabeneder 2020-09-21 22:19:20 +02:00 committed by GitHub
commit bf8b828957
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1332,6 +1332,8 @@ function gr_label_ticks(sp, letter, ticks)
end
end
function gr_label_ticks(sp, letter, ticks::Nothing) end
function gr_label_ticks_3d(sp, letter, ticks)
near_letter = letter in (:x, :z) ? :y : :x
far_letter = letter in (:x, :y) ? :z : :x