Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/addons/messagebuttonnext.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-12-09 02:58:20 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-12-09 03:07:06 (GMT)
commit394001c2e7c8585b7152e8f5888e340a0c7a1bbc (patch)
tree6254b8f0a17768c9e47aeafa5ff2c1992ff6d33c /addons/messagebuttonnext.py
parentcf6785d168eaf3ed5505705478a6aea05ad3da98 (diff)
Integration with Sugar : Exposing set_current_act on Service
Correcting two interface mismatches (install error on translator, subscribe error on creator) Changing MessageButtonNext to ButtonNext
Diffstat (limited to 'addons/messagebuttonnext.py')
-rw-r--r--addons/messagebuttonnext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/messagebuttonnext.py b/addons/messagebuttonnext.py
index 40e55c2..37d86b4 100644
--- a/addons/messagebuttonnext.py
+++ b/addons/messagebuttonnext.py
@@ -29,7 +29,7 @@ class MessageButtonNext(EventFilter):
MessageButtonNext
"""
# set message
- message = TStringProperty("Message")
+ message = TStringProperty("Click next to continue")
# create the position as an array of fixed-size 2
position = TArrayProperty((0,0), 2, 2)
@@ -95,7 +95,7 @@ __event__ = {
"display_name" : "Message button next",
"icon" : "message-bubble",
"class" : MessageButtonNext,
- "mandatory_props" : ["message"]
+ "mandatory_props" : []
}
class MsgNext(gtk.EventBox):