Skip to content
Snippets Groups Projects
Commit ea3440ed authored by gb10's avatar gb10
Browse files

Fixed bug where sequence name prefix was not being shown in feedback box

parent 786950d0
No related branches found
No related tags found
No related merge requests found
......@@ -1061,10 +1061,10 @@ const char *sequenceGetVariantName(const BlxSequence *seq)
return seq->variantName;
}
/* Return the display name of a BlxSequence (same as variant name for now) */
/* Return the display name of a BlxSequence (same as full name for now) */
const char *sequenceGetDisplayName(const BlxSequence *seq)
{
return seq->variantName;
return seq->fullName;
}
/* Return the short name of a BlxSequence (excludes prefix and variant number) */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment