Browse Source

wxGUI animation/timeline: add 'GRASS GIS' to the frame titles
(merge https://trac.osgeo.org/grass/changeset/59972 from trunk)


git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@59973 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 11 years ago
parent
commit
a62251a747
2 changed files with 3 additions and 3 deletions
  1. 1 1
      gui/wxpython/animation/frame.py
  2. 2 2
      gui/wxpython/timeline/frame.py

+ 1 - 1
gui/wxpython/animation/frame.py

@@ -49,7 +49,7 @@ gcore.set_raise_on_error(True)
 
 
 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))

+ 2 - 2
gui/wxpython/timeline/frame.py

@@ -8,7 +8,7 @@ Classes:
  - 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 @@ def check_version(*version):
 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 = []