Skip to content

Commit

Permalink
fix: Disable currently unsupported code
Browse files Browse the repository at this point in the history
  • Loading branch information
robloo committed Sep 7, 2020
1 parent 308ef6c commit 1db40b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ public void RaisePropertyChangedEvent(Color oldColor, Color newColor, int oldVal
string oldValueString = GetValueString(oldColor, oldValue);
string newValueString = GetValueString(newColor, newValue);

base.RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValueString, newValueString);
//UNO TODO: Requires ValuePatternIdentifiers.ValueProperty to be implemented
//base.RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValueString, newValueString);
}

private string GetValueString(Color color, int value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ public void RaisePropertyChangedEvent(Color oldColor, Color newColor, Vector4 ol
string oldValueString = GetValueString(oldColor, oldHsvColor);
string newValueString = GetValueString(newColor, newHsvColor);

base.RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValueString, newValueString);
//UNO TODO: Requires ValuePatternIdentifiers.ValueProperty to be implemented
//base.RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValueString, newValueString);
}

private string GetValueString(Color color, Vector4 hsvColor)
Expand Down

0 comments on commit 1db40b1

Please sign in to comment.