Skip to content

Commit 4ac7b91

Browse files
committed
LineageRegistrationPlugin: rename the menu entry
1 parent a97964b commit 4ac7b91

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/main/java/org/mastodon/mamut/tomancak/lineage_registration/LineageRegistrationPlugin.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class LineageRegistrationPlugin implements MamutPlugin
3737
private static final String[] MATCH_TREE_KEYS = { "not mapped" };
3838

3939
private static final Map< String, String > menuTexts =
40-
Collections.singletonMap( MATCH_TREE, "Sort Lineage Tree (To Match Other Project)" );
40+
Collections.singletonMap( MATCH_TREE, "Lineage Registration" );
4141

4242
private MamutPluginAppModel pluginAppModel = null;
4343

@@ -52,7 +52,8 @@ public Descriptions()
5252
@Override
5353
public void getCommandDescriptions( CommandDescriptions descriptions )
5454
{
55-
descriptions.add( MATCH_TREE, MATCH_TREE_KEYS, "Sort the TrackScheme such that the order matches another project." );
55+
descriptions.add( MATCH_TREE, MATCH_TREE_KEYS,
56+
"Register the cell lineages of two stereotypically developing embryos, by analyzing cell division directions." );
5657
}
5758
}
5859

@@ -81,7 +82,7 @@ private void updateEnabledActions()
8182
@Override
8283
public List< ViewMenuBuilder.MenuItem > getMenuItems()
8384
{
84-
return Collections.singletonList( menu( "Plugins", menu( "Trees Management", item( MATCH_TREE ) ) ) );
85+
return Collections.singletonList( menu( "Plugins", item( MATCH_TREE ) ) );
8586
}
8687

8788
@Override

0 commit comments

Comments
 (0)