diff --git a/Fltk/openglWindow.cpp b/Fltk/openglWindow.cpp index e834e5220e30c1cee0a51f9ba3aab91ed7613f2a..2812bbbd52390b9c84f33e09ab99aea202a156a2 100644 --- a/Fltk/openglWindow.cpp +++ b/Fltk/openglWindow.cpp @@ -649,7 +649,7 @@ int openglWindow::handle(int event) if(me) text += me->getInfoString(); if(points.size()){ char tmp[256]; - sprintf(tmp, "Point (%.16g, %.16g)", points[0].x(), points[0].y()); + sprintf(tmp, "Point (%g, %g)", points[0].x(), points[0].y()); text += tmp; if(CTX::instance()->post.graphPointCommand.size()){ text += std::string(" - Double-click to execute\n\n");