Changes between Version 1 and Version 2 of Ticket #7226, comment 8


Ignore:
Timestamp:
2012-01-21T19:42:30+01:00 (14 years ago)
Author:
akks

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7226, comment 8

    v1 v2  
    22It seems, brace-matching is essential part of the script.
    33
    4 I can ot figure the logic of active script - it finds shortcut in
     4I can ot figure the logic of active script - it finds shortcuts in
    55{{{
    66super(tr("Split Way"), "splitway", tr("Split a way at the selected node."),
     
    88  putValue("help", ht("/Action/SplitWay"));
    99}}}
    10 but does not find
     10and
     11{{{
     12super(tr("Adjacent nodes"), "adjnodes", tr("Select adjacent nodes"),
     13                Shortcut.registerShortcut("tools:adjnodes", tr("Tool: {0}","Adjacent nodes"),
     14                KeyEvent.VK_E, Shortcut.GROUP_EDIT), true);
     15putValue("help", ht("/Action/AdjacentNodes"));
     16}}}
     17but does not find in
    1118{{{
    1219   super(tr("Split Object"), "splitobject", tr("Split an object at the selected nodes."),
     
    1522                putValue("help", ht("/Action/SplitObject"));
    1623}}}
    17 Two line limit, or I am wrong?