You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FreeFrame/Components/Shapes/SVGRectangle.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ public SVGRectangle(XmlReader reader) : this(
25
25
Convert.ToInt32(reader["y"]),
26
26
Convert.ToInt32(reader["rx"]),
27
27
Convert.ToInt32(reader["ry"]),
28
-
Convert.ToString(reader["fill"]==null?DefaultColor:reader["fill"]))// TODO: Error handler if one of the properties in reader is note here, it should be dynamic
if(_userMode!=UserMode.Create)// If it's not to create
@@ -929,9 +929,9 @@ private void ShowUI()
929
929
if(ImGui.Button(String.Format("Remove keyframe {0} for {1}",_timeline.TimelineIndex,_selectedShape.GetType().Name)))
930
930
{
931
931
_timeline.SortedTimeline[_timeline.TimelineIndex].Remove(_timeline.SortedTimeline[_timeline.TimelineIndex].Find(x =>x.Id==_selectedShape.Id)!);// Can't be null
0 commit comments