From f27add0c0f073b07fbee68797d9897b5f8e62676 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 25 Jul 2014 14:03:10 +0000 Subject: [PATCH] --- Fltk/openglWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fltk/openglWindow.cpp b/Fltk/openglWindow.cpp index e834e5220e..2812bbbd52 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"); -- GitLab