diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-10-10 18:59:42 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-10-12 11:25:56 +0900 |
commit | 97c9fa64a461ccf60e63fd8a8982c9b8c5c6290e (patch) | |
tree | 2f4b7ef2760ce39d6951fffee8f69b62d3cbc041 /src/lib/emotion/efl_canvas_video.eo | |
parent | 62abe2cbff0aa809a474f7a89452256f5371ebc3 (diff) |
evas/elm: Remove group_show and group_hide
These should be just overrides of Efl.Gfx.visible.set. Many
widgets were handling smart show() and hide() manually, which
means this patch is quite large.
Hopefully this doesn't break anything, obviously. But here are
some widgets known to be problematic, as the old code flow was
really strange (sometimes not calling the efl_super function):
- window
- notify
Diffstat (limited to 'src/lib/emotion/efl_canvas_video.eo')
-rw-r--r-- | src/lib/emotion/efl_canvas_video.eo | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/emotion/efl_canvas_video.eo b/src/lib/emotion/efl_canvas_video.eo index 0e554adb79..4851f2b190 100644 --- a/src/lib/emotion/efl_canvas_video.eo +++ b/src/lib/emotion/efl_canvas_video.eo | |||
@@ -52,13 +52,12 @@ class Efl.Canvas.Video (Efl.Canvas.Group, Efl.File, Efl.Player, Efl.Image, Efl.I | |||
52 | implements { | 52 | implements { |
53 | Efl.Object.constructor; | 53 | Efl.Object.constructor; |
54 | Efl.Gfx.color.set; | 54 | Efl.Gfx.color.set; |
55 | Efl.Gfx.visible.set; | ||
55 | Efl.Canvas.Object.clip.set; | 56 | Efl.Canvas.Object.clip.set; |
56 | Efl.Canvas.Group.group_add; | 57 | Efl.Canvas.Group.group_add; |
57 | Efl.Canvas.Group.group_del; | 58 | Efl.Canvas.Group.group_del; |
58 | Efl.Canvas.Group.group_move; | 59 | Efl.Canvas.Group.group_move; |
59 | Efl.Canvas.Group.group_resize; | 60 | Efl.Canvas.Group.group_resize; |
60 | Efl.Canvas.Group.group_show; | ||
61 | Efl.Canvas.Group.group_hide; | ||
62 | Efl.File.file.set; | 61 | Efl.File.file.set; |
63 | Efl.File.file.get; | 62 | Efl.File.file.get; |
64 | Efl.Player.play.set; | 63 | Efl.Player.play.set; |