Skip to content

Commit

Permalink
bugfix: Speaker.DegreeAfter was not loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislav.seps committed Sep 3, 2014
1 parent ca3589a commit cb34228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Transcription/Speaker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,8 @@ public Speaker(XElement s)//V3 format
if (Elements.TryGetValue("pinned", out rem))
this.PinnedToDocument = XmlConvert.ToBoolean(rem);

if (Elements.TryGetValue("degreeafter", out rem))
this.DegreeAfter = rem;


Elements.Remove("id");
Expand All @@ -319,8 +321,6 @@ public Speaker(XElement s)//V3 format
Elements.Remove("synchronized");

Elements.Remove("pinned");


}

private DBType stringToDBType(string rem)
Expand Down

0 comments on commit cb34228

Please sign in to comment.