diff options
Diffstat (limited to 'metapost')
-rw-r--r-- | metapost/context/base/mp-grph.mpiv | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/metapost/context/base/mp-grph.mpiv b/metapost/context/base/mp-grph.mpiv index 5917beb17..3cbe42bdb 100644 --- a/metapost/context/base/mp-grph.mpiv +++ b/metapost/context/base/mp-grph.mpiv @@ -119,11 +119,13 @@ def doloadfigure (expr filename) text figureattributes = enddef ; def graphictext primary t = - if mfun_trial_run : - let mfun_graphic_text = mfun_no_graphic_text ; - else : - let mfun_graphic_text = mfun_do_graphic_text ; - fi + hide ( + if mfun_trial_run : + let mfun_graphic_text = mfun_no_graphic_text ; + else : + let mfun_graphic_text = mfun_do_graphic_text ; + fi + ) mfun_graphic_text(t) enddef ; |