entry - entry did word wrapping even the mode was ELM_WRAP_NONE.
authorChunEon Park <hermet@hermet.pe.kr>
Sun, 16 Mar 2014 15:27:06 +0000 (00:27 +0900)
committerChunEon Park <hermet@hermet.pe.kr>
Sun, 16 Mar 2014 15:31:06 +0000 (00:31 +0900)
The ELM_WRAP_NONE mode should not have word wrap textblock style.

@fix

data/themes/edc/elm/entry.edc

index eafacb2a7632ee9a7cd4ea0b433fb24cff51ee6d..75da5ee384b49cac09550e82cbf5eabdab64efe4 100644 (file)
@@ -442,10 +442,18 @@ group { name: "elm/entry/base/default";
          base: "font="FN" font_size=10 color=#ffffff style=shadow,bottom shadow_color=#00000080 wrap=word text_class=entry color_class=entry left_margin=2 right_margin=2";
          ENABLED_TEXTBLOCK_TAGS
       }
+      style { name: "entry_nowrap_style";
+         base: "font="FN" font_size=10 color=#ffffff style=shadow,bottom shadow_color=#00000080 text_class=entry color_class=entry left_margin=2 right_margin=2";
+         ENABLED_TEXTBLOCK_TAGS
+      }
       style { name: "entry_disabled_style";
          base: "font="FN" font_size=10 color=#151515 style=shadow,bottom shadow_color=#ffffff19 wrap=word text_class=entry color_class=entry_disabled left_margin=2 right_margin=2";
          DISABLED_TEXTBLOCK_TAGS
       }
+      style { name: "entry_nowrap_disabled_style";
+         base: "font="FN" font_size=10 color=#151515 style=shadow,bottom shadow_color=#ffffff19 text_class=entry color_class=entry_disabled left_margin=2 right_margin=2";
+         DISABLED_TEXTBLOCK_TAGS
+      }
       style { name: "entry_guide_style";
          base: "font="FN" font_size=10 color=#000000 style=shadow,bottom shadow_color=#ffffff19 wrap=word text_class=entry color_class=entry_guide left_margin=2 right_margin=2 ellipsis=0.0";
          DISABLED_TEXTBLOCK_TAGS
@@ -671,14 +679,14 @@ group { name: "elm/entry/base-nowrap/default";
       }
       part { name: "elm.text";
          description { state: "default" 0.0;
-            text { style: "entry_style";
+            text { style: "entry_nowrap_style";
                min: 1 1;
                align: 0.0 0.0;
             }
          }
          description { state: "disabled" 0.0;
             inherit: "default" 0.0;
-            text { style: "entry_disabled_style";
+            text { style: "entry_nowrap_disabled_style";
                min: 0 1;
             }
          }