Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/extensions/tutoriusremote.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-12-01 02:20:47 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-12-01 02:20:47 (GMT)
commit85187a08a51fed549aa5bd0ca7397f97cbe85d30 (patch)
tree6b157daa9e9af26c7f9b03f6b41774e62c9ad764 /src/extensions/tutoriusremote.py
parent512d963880a47c483ff3a7f070110dd93885d18d (diff)
Remote : Putting OK button on the left as usual
Diffstat (limited to 'src/extensions/tutoriusremote.py')
-rwxr-xr-xsrc/extensions/tutoriusremote.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extensions/tutoriusremote.py b/src/extensions/tutoriusremote.py
index 92e031a..912e968 100755
--- a/src/extensions/tutoriusremote.py
+++ b/src/extensions/tutoriusremote.py
@@ -87,9 +87,9 @@ class TPalette(Palette):
dlg = gtk.Dialog('Run a tutorial',
None,
gtk.DIALOG_MODAL,
- (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT,
- gtk.STOCK_OK, gtk.RESPONSE_ACCEPT))
- dlg.vbox.pack_start(gtk.Label(_('Which tutorial do you want to run?')))
+ (gtk.STOCK_OK, gtk.RESPONSE_ACCEPT,
+ gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT))
+ dlg.vbox.pack_start(gtk.Label(_('Which tutorial do you want to run?\n')))
activity = get_model().get_active_activity()