Changeset 21

Show
Ignore:
Timestamp:
08/26/07 23:42:41 (9 months ago)
Author:
kestas
Message:

Decreased necessity of the mouse usage in the "About" dialog

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/gui/helpwin.py

    r19 r21  
    6767      vbox.Add(scWinAbout, 1, wx.ALL | wx.EXPAND, 5) 
    6868 
    69       self.buttonClose = wx.Button(self, 2002, _("Close")) 
     69      self.buttonClose = wx.Button(self, 2002, _("&Close")) 
    7070      vbox.Add(self.buttonClose, 0, wx.ALL | wx.ALIGN_RIGHT, 5) 
    7171 
     
    103103      vboxWrite.Add(labelWrite, 0, wx.ALL, 10) 
    104104      writePanel.SetSizer(vboxWrite) 
     105      writePanel.SetFocus() 
    105106       
    106107      nb.AddPage(writePanel, _("Written By")) 
     
    143144      vbox.Add(nb, 1, wx.ALL | wx.EXPAND, 3) 
    144145       
    145       buttonClose = wx.Button(self, 2005, _("Close")) 
     146      buttonClose = wx.Button(self, 2005, _("&Close")) 
    146147      vbox.Add(buttonClose, 0, wx.ALL | wx.ALIGN_RIGHT, 5) 
    147148       
     
    200201      vbox.Add(wx.StaticLine(self, -1), 0, wx.ALL | wx.EXPAND, 5) 
    201202 
    202       self.buttonCredits = wx.Button(self, 2004, _("Credits")) 
     203      self.buttonCredits = wx.Button(self, 2004, _("C&redits")) 
    203204      hboxButtons.Add(self.buttonCredits, 0, wx.ALL | wx.ALIGN_LEFT, 3) 
    204205       
    205       self.buttonLicence = wx.Button(self, 2006, _("Licence")) 
     206      self.buttonLicence = wx.Button(self, 2006, _("&Licence")) 
    206207      hboxButtons.Add(self.buttonLicence, 0, wx.ALL | wx.ALIGN_LEFT, 3) 
    207208       
    208       self.buttonOK = wx.Button(self, 2003, _("Close")) 
     209      self.buttonOK = wx.Button(self, 2003, _("&Close")) 
    209210      hboxButtons.Add(self.buttonOK, 0, wx.ALL | wx.ALIGN_RIGHT, 3) 
    210211