elm_entry: Do not paste multiple lines in single line entry

This commit is contained in:
Ryuan Choi 2013-05-15 17:45:48 +01:00 committed by Tom Hacohen
parent b9252891a7
commit f296eed13e
3 changed files with 14 additions and 4 deletions

View File

@ -1348,3 +1348,7 @@
2013-05-14 Youngbok Shin
* Fix ctxpopup can't be called again in the mobile mode entry.
2013-05-16 Ryuan Choi (ryuan)
* Fix single line enty got multiple line when pasted multiple line.

View File

@ -1615,8 +1615,8 @@ collections {
{
style { name: "entry_single_textblock_style";
base: "font=Sans font_size=10 color=#000 wrap=none text_class=entry";
tag: "br" "\n";
tag: "ps" "ps";
tag: "br" "";
tag: "ps" "";
tag: "tab" "\t";
tag: "em" "+ font=Sans:style=Oblique";
tag: "b" "+ font=Sans:style=Bold";
@ -1625,8 +1625,8 @@ collections {
}
style { name: "entry_single_textblock_disabled_style";
base: "font=Sans font_size=10 color=#00000080 wrap=none text_class=entry";
tag: "br" "\n";
tag: "ps" "ps";
tag: "br" "";
tag: "ps" "";
tag: "tab" "\t";
tag: "em" "+ font=Sans:style=Oblique";
tag: "b" "+ font=Sans:style=Bold";

View File

@ -987,6 +987,8 @@ group { name: "elm/entry/base-single/default";
{
style { name: "entry_single_textblock_style";
base: "font=Sans font_size=10 color=#000 wrap=none text_class=entry left_margin=2 right_margin=2";
tag: "br" "";
tag: "ps" "";
tag: "em" "+ font_style=Oblique";
tag: "link" "+ color=#800 underline=on underline_color=#8008";
tag: "hilight" "+ font_weight=Bold";
@ -995,6 +997,8 @@ group { name: "elm/entry/base-single/default";
}
style { name: "entry_single_textblock_disabled_style";
base: "font=Sans font_size=10 color=#00000080 wrap=none text_class=entry left_margin=2 right_margin=2";
tag: "br" "";
tag: "ps" "";
tag: "em" "+ font_style=Oblique";
tag: "link" "+ color=#00000080 underline=on underline_color=#00000080";
tag: "hilight" "+ font_weight=Bold";
@ -1003,6 +1007,8 @@ group { name: "elm/entry/base-single/default";
}
style { name: "entry_single_textblock_guide_style";
base: "font=Sans font_size=10 color=#00000080 wrap=none text_class=entry left_margin=2 right_margin=2 ellipsis=0.0";
tag: "br" "";
tag: "ps" "";
tag: "em" "+ font_style=Oblique";
tag: "hilight" "+ font_weight=Bold";
}