xartigas pushed a commit to branch master. http://git.enlightenment.org/tools/examples.git/commit/?id=870cda67308f28a1b7cc1fdf00560872fc9f358e
commit 870cda67308f28a1b7cc1fdf00560872fc9f358e Author: Ali Alzyod <[email protected]> Date: Fri Dec 20 10:00:30 2019 +0100 EXAMPLES efl.text.style: reflect updates Reviewers: segfaultxavi Reviewed By: segfaultxavi Differential Revision: https://phab.enlightenment.org/D10898 --- apps/csharp/calculator/src/calculator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/csharp/calculator/src/calculator.cs b/apps/csharp/calculator/src/calculator.cs index f60f9bdc..933f3dc5 100644 --- a/apps/csharp/calculator/src/calculator.cs +++ b/apps/csharp/calculator/src/calculator.cs @@ -178,8 +178,8 @@ public class Calculator : Efl.Csharp.Application table.PackTable(screen, 0, 0, 4, 1); screen.TextHorizontalAlign = 0.9; screen.TextVerticalAlign = 0.5; - screen.EffectType = Efl.TextStyleEffectType.Glow; - screen.GlowColor = (128, 128, 128, 128); + screen.TextEffectType = Efl.TextStyleEffectType.Glow; + screen.TextGlowColor = (128, 128, 128, 128); screen.ChangedEvent += ScreenChangedCb; } } --
