瀏覽代碼

wxGUI: bug fix: wxPaintDC may be created only in EVT_PAINT handler

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@51068 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 13 年之前
父節點
當前提交
45e5ab7cae
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/wxpython/mapdisp/mapwindow.py

+ 1 - 1
gui/wxpython/mapdisp/mapwindow.py

@@ -470,7 +470,7 @@ class BufferedWindow(MapWindow, wx.Window):
             # set back old coordinates
             textinfo['coords'] = oldCoords
             
-        dc = wx.BufferedPaintDC(self, ibuffer)
+        dc = wx.BufferedDC(None, ibuffer)
         dc.Clear()
         self.PrepareDC(dc)
         self.pdc.DrawToDC(dc)