Index: 3depict-0.0.15/src/backend/plot.cpp
===================================================================
--- 3depict-0.0.15.orig/src/backend/plot.cpp	2013-12-08 13:55:53.000000000 +0100
+++ 3depict-0.0.15/src/backend/plot.cpp	2013-12-08 13:56:19.000000000 +0100
@@ -1852,17 +1852,10 @@
 				gr->Line (mglPoint(bufX[uj],std::max(0.0f,(float)boundMin.y)),
 					mglPoint(bufX[uj],bufY[uj]),colourCode,100);
 
-				//Print labels near to the text
-				const float STANDOFF_FACTOR=1.05;
-#ifdef USE_MGL2
-				gr->Text(mglData(bufX[uj]),mglData(bufY[uj]*STANDOFF_FACTOR),
+				const float STANDOFF_FACTOR=1.05f;
+				gr->Puts(mglPoint(bufX[uj],bufY[uj]*STANDOFF_FACTOR),
 					overlayData[ui].title.c_str());
-#else
-				//Font size in mathgl uses negative values to set a relative font size
-				gr->Text(mglPoint(bufX[uj],bufY[uj]*STANDOFF_FACTOR),
-					overlayData[ui].title.c_str(),"",-0.6);
 
-#endif
 			}
 		}
 	}
