Skip to content

Commit

Permalink
[Bugfix] Ties with option 'n' are no longer invisible
Browse files Browse the repository at this point in the history
  • Loading branch information
ulteq committed Jan 13, 2016
1 parent af3e3e6 commit 9be2ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/rig_file_input_output/RigDef_Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4134,7 +4134,7 @@ void Parser::ParseTies(Ogre::String const & line)
switch (tie_char)
{
case 'n':
tie.options = Tie::OPTIONS_INVISIBLE;
tie.options = Tie::OPTIONS_VISIBLE;
break;
case 'i':
tie.options = Tie::OPTIONS_INVISIBLE;
Expand Down

1 comment on commit 9be2ede

@ohlidalp
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.