summaryrefslogtreecommitdiff
path: root/graphics/asymptote/drawpath3.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/drawpath3.h')
-rw-r--r--graphics/asymptote/drawpath3.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/graphics/asymptote/drawpath3.h b/graphics/asymptote/drawpath3.h
index a4b6a94523..84456ad6f5 100644
--- a/graphics/asymptote/drawpath3.h
+++ b/graphics/asymptote/drawpath3.h
@@ -35,8 +35,11 @@ public:
BezierCurve R;
#endif
void init() {
- billboard=interaction == BILLBOARD &&
- !settings::getSetting<bool>("offscreen");
+#ifdef HAVE_LIBOSMESA
+ billboard=false;
+#else
+ billboard=interaction == BILLBOARD;
+#endif
centerIndex=0;
}