summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2019-08-13 20:38:53 -0300
committerFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2019-08-13 20:38:53 -0300
commitcc8a91456908cc64cb81663ae79663eceaf9d4ae (patch)
treef83965e65ced8d46af8475dc13faa4934ffefa95
parent0bb1a6f41049875e79ce7914b87f89d800165607 (diff)
downloadefl-devs/felipealmeida/mvvm-parts.tar.gz
efl-mono: Add call to property bind for partsdevs/felipealmeida/mvvm-parts
-rw-r--r--src/bindings/mono/efl_mono/Bind.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bindings/mono/efl_mono/Bind.cs b/src/bindings/mono/efl_mono/Bind.cs
index 6f5677438a..f411204399 100644
--- a/src/bindings/mono/efl_mono/Bind.cs
+++ b/src/bindings/mono/efl_mono/Bind.cs
@@ -40,8 +40,7 @@ public class BindableProperty<T>
}
else
{
- // FIXME Part binding goes here
- Eina.Log.Error($"Binding part {partName}.{propertyName} to {modelProperty}");
+ ((Efl.Ui.IPropertyBind)((Efl.IPart)this.binder).GetPart (this.partName)).PropertyBind (this.propertyName, modelProperty);
}
}