summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_grid.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/elm_grid.eo')
-rw-r--r--src/lib/elementary/elm_grid.eo8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/elementary/elm_grid.eo b/src/lib/elementary/elm_grid.eo
index 8e50dafe7b..ebf5bb2929 100644
--- a/src/lib/elementary/elm_grid.eo
+++ b/src/lib/elementary/elm_grid.eo
@@ -1,16 +1,18 @@
-class Elm.Grid (Elm.Widget, Efl.Ui.Focus.Composition)
+class Elm.Grid (Efl.Ui.Widget, Efl.Ui.Focus.Composition, Efl.Ui.Legacy)
{
[[Elementary grid class]]
legacy_prefix: elm_grid;
eo_prefix: elm_obj_grid;
data: null;
methods {
- @property size {
+ @property grid_size {
set {
[[Set the virtual size of the grid]]
+ legacy: elm_grid_size_set;
}
get {
[[Get the virtual size of the grid]]
+ legacy: elm_grid_size_get;
}
values {
w: int; [[The virtual width of the grid]]
@@ -55,7 +57,7 @@ class Elm.Grid (Elm.Widget, Efl.Ui.Focus.Composition)
implements {
class.constructor;
Efl.Object.constructor;
- Elm.Widget.theme_apply;
+ Efl.Ui.Widget.theme_apply;
Efl.Ui.Focus.Composition.prepare;
}
}