Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/addons/typetextaction.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-10-17 17:47:58 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-10-17 17:47:58 (GMT)
commit3b9bff2ef1826987d95815ff03c235052cea9aae (patch)
treeeac77f7221d54642ee7258e3bc8c2376d65c8900 /addons/typetextaction.py
parent8ffa6e6e714a560d17e13f909625f143338e785b (diff)
LP 439980 : Code review changes : renamed is_identical to __eq__, relaxed action insertion constraints, added fixed meta-props for addons
Diffstat (limited to 'addons/typetextaction.py')
-rw-r--r--addons/typetextaction.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/typetextaction.py b/addons/typetextaction.py
index 251dea2..fee66e5 100644
--- a/addons/typetextaction.py
+++ b/addons/typetextaction.py
@@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
from sugar.tutorius.actions import *
-
+from sugar.tutorius import gtkutils
class TypeTextAction(Action):
"""
@@ -53,5 +53,5 @@ __action__ = {
'display_name' : 'Type text',
'icon' : 'format-justify-center',
'class' : TypeTextAction,
- 'mandatoryprops' : ['widgetUAM', 'text']
+ 'mandatory_props' : ['widgetUAM', 'text']
}