rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=cbcd13019aebeade214898c642f616f4c617f85a

commit cbcd13019aebeade214898c642f616f4c617f85a
Author: Vitalii Vorobiov <vi.vorob...@samsung.com>
Date:   Wed Feb 3 15:24:24 2016 +0000

    property_style: wrong variable to check symbol ( ' )
    
    Still this symbol sometimes appear in comboboxes
---
 src/bin/ui/property_style.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/ui/property_style.c b/src/bin/ui/property_style.c
index fe157dc..e17f13e 100644
--- a/src/bin/ui/property_style.c
+++ b/src/bin/ui/property_style.c
@@ -479,10 +479,10 @@ _tag_value_get(const char* text_style, char* a_tag)
                {
                   equals_sign++;
 
-                  if (token[strlen(token) - 1] != '\'')
+                  if (equals_sign[strlen(equals_sign) - 1] != '\'')
                     result = eina_tmpstr_add(equals_sign);
                   else
-                    result = eina_tmpstr_add_length(equals_sign, strlen(token) 
- 1);
+                    result = eina_tmpstr_add_length(equals_sign, 
strlen(equals_sign) - 1);
                   if (!strstr(FONT_DEFAULT, a_tag)) break;
                }
           }

-- 


Reply via email to