Browse Source

wxGUI: revert busy cursor https://trac.osgeo.org/grass/changeset/66625 for profile tool

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@66640 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 9 years ago
parent
commit
d78e575623
1 changed files with 1 additions and 3 deletions
  1. 1 3
      gui/wxpython/wxplot/profile.py

+ 1 - 3
gui/wxpython/wxplot/profile.py

@@ -284,12 +284,10 @@ class ProfileFrame(BasePlotFrame):
             return
             return
 
 
         self.SetCursor(wx.StockCursor(wx.CURSOR_ARROW))
         self.SetCursor(wx.StockCursor(wx.CURSOR_ARROW))
-        wx.BeginBusyCursor()
-        wx.SafeYield()
+
         self.SetupProfile()
         self.SetupProfile()
         p = self.CreatePlotList()
         p = self.CreatePlotList()
         self.DrawPlot(p)
         self.DrawPlot(p)
-        wx.EndBusyCursor()
 
 
     def CreatePlotList(self):
     def CreatePlotList(self):
         """Create a plot data list from transect datalist and
         """Create a plot data list from transect datalist and