start.py: Update descriptions and button order

This commit is contained in:
dewagter
2014-12-05 10:41:14 +01:00
parent 001b76373f
commit 1d9f7f00b8
+2 -2
View File
@@ -389,7 +389,7 @@ class ConfChooser:
self.btnLaunch = gtk.Button("Launch Paparazzi with selected configuration")
self.btnLaunch.connect("clicked", self.launch)
self.btnLaunch.set_tooltip_text("Launch Paparazzi with current conf.xml")
self.btnLaunch.set_tooltip_text("Launch Paparazzi with current conf.xml and control_panel.xml")
self.btnExit = gtk.Button("Exit")
self.btnExit.connect("clicked", self.destroy)
@@ -398,8 +398,8 @@ class ConfChooser:
self.toolbar = gtk.HBox()
self.toolbar.set_size_request(0,60)
self.toolbar.pack_start(self.btnAccept)
self.toolbar.pack_start(self.btnLaunch)
self.toolbar.pack_start(self.btnAccept)
self.toolbar.pack_start(self.btnExit)
self.my_vbox.pack_start(self.toolbar, False)