diff --git a/gitso/trunk/CHANGELOG.txt b/gitso/trunk/CHANGELOG.txt index c058849..f646992 100644 --- a/gitso/trunk/CHANGELOG.txt +++ b/gitso/trunk/CHANGELOG.txt @@ -1,3 +1,8 @@ +0.6 +---------------------------- +*added --dev option while testing + + 0.5 - "Kill the undead" ----------------------------------------- *Complete rewrite of the interface diff --git a/gitso/trunk/ConnectionWindow.py b/gitso/trunk/ConnectionWindow.py index 652ad00..2e1a4a3 100644 --- a/gitso/trunk/ConnectionWindow.py +++ b/gitso/trunk/ConnectionWindow.py @@ -68,13 +68,13 @@ class ConnectionWindow(wx.Frame): #Buttons self.connectButton = wx.Button(self, 10, "Start", wx.Point(xval1, 70)) + self.connectButton.SetDefault() wx.EVT_BUTTON(self, 10, self.ConnectSupport) self.stopButton = wx.Button(self, wx.ID_STOP, "", wx.Point(xval2, 70)) self.stopButton.Enable(False) wx.EVT_BUTTON(self, wx.ID_STOP, self.KillPID) # Radio Boxes - #self.rb = wx.RadioBox(self, 50, "", wx.Point(10, 10), wx.Size(330, 70)) self.rb1 = wx.RadioButton(self, -1, 'Get Help', (10, 15), style=wx.RB_GROUP) self.rb2 = wx.RadioButton(self, -1, 'Give Support', (10, 48)) self.rb1.SetValue(True)