From 1d5d2c6bd621d781a0c5d029893fc2393a911aa1 Mon Sep 17 00:00:00 2001 From: Markus Neteler Date: Sun, 21 Jun 2020 19:20:02 +0200 Subject: [PATCH] r.hypso: matplotlib wx change to wxAGG --- grass7/raster/r.hypso/r.hypso.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grass7/raster/r.hypso/r.hypso.py b/grass7/raster/r.hypso/r.hypso.py index fcdd351842..f8117a1802 100755 --- a/grass7/raster/r.hypso/r.hypso.py +++ b/grass7/raster/r.hypso/r.hypso.py @@ -124,7 +124,7 @@ def findint(kl,f): def plotImage(x,y,image,type,xlabel,ylabel,title): import matplotlib #required by windows - matplotlib.use('wx') #required by windows + matplotlib.use('wxAGG') #required by windows import matplotlib.pyplot as plt plt.plot(x, y, type)