Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-org-sugar-git@silbe.org>2009-04-05 15:51:59 (GMT)
committer Sascha Silbe <sascha-org-sugar-git@silbe.org>2009-04-05 15:51:59 (GMT)
commitb5d45d7f0429e2af04c70409a0844f12ef9de18d (patch)
tree92ab59f086af9d2e0bfadc6ffdf8ad660a8e6ef7
parenteac20ac371e0e3842f01e709c217834f58e2af1f (diff)
improve "read image" question box#
-rwxr-xr-xsoas-assimilator.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/soas-assimilator.py b/soas-assimilator.py
index 6a8a74e..842f10c 100755
--- a/soas-assimilator.py
+++ b/soas-assimilator.py
@@ -461,9 +461,11 @@ class tApp (object) :
Ask the user whether to create an image of a USB stick.
"""
askDialog = gtk.MessageDialog(type=gtk.MESSAGE_QUESTION,
- buttons=gtk.BUTTONS_NONE,
- message_format="\n".join([x.strip() for x in """
+ buttons=gtk.BUTTONS_NONE)
+ askDialog.set_markup("\n".join([x.strip() for x in """
Once the write mode is active, it will overwrite ANY USB stick you plug in. You now (and only now) have the chance to read an existing USB stick and save an image of it to the directory you just chose.
+ <span underline="single">After</span> choosing "Create image first", any stick you plug in will be read out automatically.
+
What do you want to do?
""".split("\n")]))