summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2019-10-03 12:42:51 +0300
committerTom Hacohen <tom@stosb.com>2019-10-12 17:52:19 +0300
commit3bc93eca1b8f04a05e8792ea1cd0f533399bbb90 (patch)
treeedea941bc38efea5dfdb24621056046bcccc9bca
parentdb0c9e89b45c0529f64247ee373a167a212c19c8 (diff)
downloadefl-3bc93eca1b8f04a05e8792ea1cd0f533399bbb90.tar.gz
Improvements.
-rw-r--r--src/lib/elementary/efl2_ui_text.eo4
-rw-r--r--src/lib/evas/canvas/efl2_text_cursor.eo1
2 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/elementary/efl2_ui_text.eo b/src/lib/elementary/efl2_ui_text.eo
index 1e4a5ec2fc..789c86bf5f 100644
--- a/src/lib/elementary/efl2_ui_text.eo
+++ b/src/lib/elementary/efl2_ui_text.eo
@@ -37,7 +37,7 @@ class @beta Efl2.Ui.Text extends Efl.Ui.Layout_Base implements Efl.Input.Clickab
context menus, password mode or autocapitalization, for example.]]
methods {
// FIXME: rename and improve doc
- @property valign {
+ @property vertical_align {
[[Vertical alignment of text]]
values {
value: double; [[Vertical alignment value]]
@@ -117,6 +117,8 @@ class @beta Efl2.Ui.Text extends Efl.Ui.Layout_Base implements Efl.Input.Clickab
disabled: bool; [[If $true, the menu is disabled.]]
}
}
+
+ // FIXME: Context menu functions are bad. Waiting for feedback
context_menu_clear {
[[This clears and frees the items in a entry's contextual (longpress)
menu.
diff --git a/src/lib/evas/canvas/efl2_text_cursor.eo b/src/lib/evas/canvas/efl2_text_cursor.eo
index c0b40ed8eb..7109ca966f 100644
--- a/src/lib/evas/canvas/efl2_text_cursor.eo
+++ b/src/lib/evas/canvas/efl2_text_cursor.eo
@@ -112,7 +112,6 @@ class @beta Efl2.Text.Cursor extends Efl.Object {
[[Advances to the start of the grapheme cluster]]
return: bool; [[True if actually moved]]
}
- // FIXME: need cluster_next and cluster_end?
// FIXME: It's just implemented as range delete with cluster start + end.
// Sholud we have convenience wrappers for those though? This and cluster prev/next?