From fa02055b9d13e312aed09b2d98cd932500b52aec Mon Sep 17 00:00:00 2001 From: jkriege2 Date: Mon, 16 May 2022 22:32:56 +0200 Subject: [PATCH] bugfixed string conversion method --- lib/jkqtplotter/jkqtptools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jkqtplotter/jkqtptools.cpp b/lib/jkqtplotter/jkqtptools.cpp index 37eaa7814d..3bd5c6eb47 100644 --- a/lib/jkqtplotter/jkqtptools.cpp +++ b/lib/jkqtplotter/jkqtptools.cpp @@ -56,7 +56,7 @@ QString JKQTPCADrawMode2String(JKQTPCADrawMode pos) { case JKQTPCADMTicksTickLabels: return "ticks+labels"; case JKQTPCADMTicks: return "ticks"; case JKQTPCADMLineTicksTickLabels: return "line+ticks+labels"; - case JKQTPCADMTickLabelsAxisLabel: return "ticks+axislabel"; + case JKQTPCADMTickLabelsAxisLabel: return "labels+axislabel"; case JKQTPCADMTickLabels: return "labels"; case JKQTPCADMLineTicks: return "line+ticks"; case JKQTPCADMLine: return "line";