[GRASS-SVN] r59973 - in grass/branches/releasebranch_7_0/gui/wxpython: animation timeline
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Apr 29 12:21:09 PDT 2014
Author: martinl
Date: 2014-04-29 12:21:09 -0700 (Tue, 29 Apr 2014)
New Revision: 59973
Modified:
grass/branches/releasebranch_7_0/gui/wxpython/animation/frame.py
grass/branches/releasebranch_7_0/gui/wxpython/timeline/frame.py
Log:
wxGUI animation/timeline: add 'GRASS GIS' to the frame titles
(merge r59972 from trunk)
Modified: grass/branches/releasebranch_7_0/gui/wxpython/animation/frame.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/animation/frame.py 2014-04-29 19:19:27 UTC (rev 59972)
+++ grass/branches/releasebranch_7_0/gui/wxpython/animation/frame.py 2014-04-29 19:21:09 UTC (rev 59973)
@@ -49,7 +49,7 @@
class AnimationFrame(wx.Frame):
- def __init__(self, parent, giface, title=_("Animation tool"),
+ def __init__(self, parent, giface, title=_("GRASS GIS Animation tool"),
rasters=None, timeseries=None):
wx.Frame.__init__(self, parent, title=title,
style=wx.DEFAULT_FRAME_STYLE, size=(800, 600))
Modified: grass/branches/releasebranch_7_0/gui/wxpython/timeline/frame.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/timeline/frame.py 2014-04-29 19:19:27 UTC (rev 59972)
+++ grass/branches/releasebranch_7_0/gui/wxpython/timeline/frame.py 2014-04-29 19:21:09 UTC (rev 59973)
@@ -8,7 +8,7 @@
- frame::TimelineFrame
- frame::LookUp
-(C) 2012-13 by the GRASS Development Team
+(C) 2012-2014 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
@@ -70,7 +70,7 @@
class TimelineFrame(wx.Frame):
"""!The main frame of the application"""
def __init__(self, parent):
- wx.Frame.__init__(self, parent, id=wx.ID_ANY, title=_("Timeline Tool"))
+ wx.Frame.__init__(self, parent, id=wx.ID_ANY, title=_("GRASS GIS Timeline Tool"))
tgis.init(True)
self.datasets = []
More information about the grass-commit
mailing list