Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
I forgot to commit this the other day I guess
|
|
When moved to root(/) and typed something in name_entry,
ok button sent //something as as data of "done" signal.
This patch checked current path string not to concatenate two slash.
|
|
|
|
Summary: Fix a bug with finding the proper geometry when reporting anchor
interaction. It's easy to see in entry anchor2 test in elementary_test
when clicking on the lower border of the anchor.
Anchor geometries are relative to the textblock object. The problem was
that this was accounted for using the edje object's geometry instead of
the textblock geometry thus causing an offset.
Reviewers: JackDanielZ, tasn
CC: seoz
Differential Revision: https://phab.enlightenment.org/D436
TAsn: Commit message edited by me.
|
|
href=/> are not working because /> is considered to self closing tag.
Instead. href='/'> is fine since rEFL2d4ba9e8d
|
|
T860
|
|
New icon for the E module as discussed on T427, I'm not
really happy by all the bits but its a good start. Also put
in the inkscape svg mockup file.
Thanks to ragecryx that draw the base icon!
|
|
- Use strlen instead of sizeof(x) - 1 for string length calculation.
- Use !strncmp for null check.
|
|
elm_web provide UI compoents by extending ewebkit.
This patch adds a button to test select tag and window.open()
|
|
ewk_view_tiled was dropped.
ewk_view_single -> ewk_view.
|
|
We already know some apis are just wrapping the internal widget apis.
Iternally we don't need to call the external apis that have additional object validation checking.
|
|
This breaks elementary_config (open it and you'll see the weird bugs on
the top left corner). Please fix it and recommit as needed. I have no
time to dive into naviframe and see what this patch is meant to be
doing.
This reverts commit e3784b68e01849a99e06f31e02192ffb19d1275c.
|
|
Reviewers: cedric
Differential Revision: https://phab.enlightenment.org/D492
Signed-off-by: Cedric BAIL <cedric.bail@samsung.com>
|
|
|
|
caused by commit 9aa68bca91678dcd83de3e35be1a7121094d6ef7.
fix please cedric if this is wrong.
|
|
description about item structure members.
|
|
This should fix T599.
|
|
MAX and MIN are defined in a couple of places and they was already
defined in elm_priv.h. So use elm_priv.h's one.
I also moved CEIL to elm_priv.h that can be used in another places.
|
|
|
|
consistency.
_CHUNK_SIZE -> ELM_ENTRY_CHUNK_SIZE.
|
|
|
|
|
|
|
|
elm_cnp_selection_{set|get}
small refactoring.
|
|
behavior.
Some widgets override the widget translation but it didn't inherit the base widget's function.
Becuase of it,The language changed won't be properly called in the widget tree.
Now it fixed it.
|
|
support a language,changed callback if a widget has the text part in default.
|
|
Call the smart callback in the widget infra so that each widget don't need to hook the smart_translate only for the smart call.
This makes reducing duplicated code and supporting language,chagned from all widgets.
|
|
Now, it will share the strings so that reduce the binary size also user uses it in one way.
|
|
|
|
click.
Summary:
Focus highlight was not visible on first click on a widget with focus_highlight enabled on the window.
This happens because on first click, the "elm,action,focus,show" signal was emitted before setting focus highlight edje object as theme object of elm window.
In this patch, moved the _elm_win_focus_highlight_visible_set() call after focus highlight edje object set as theme object of window.
This fixes T774.
Test Plan:
elementary_test->focus then click any widget. Focus won't appear for the first time.
Reviewers: seoz, raster, woohyun
Maniphest Tasks: T774
Differential Revision: https://phab.enlightenment.org/D462
|
|
|
|
selected.
This reveals hoversel bug on mobile profile that changes the size of
text parts on continuous item change.
|
|
It looks like ctype.h is included in some other headers by luck but it
is recommended to explicitly include the necessary header.
Confirmed by glima as he commented this out.
|
|
- Used macro for constant.
- Changed timer name to be more descriptive.
- Added descriptions about timers.
|
|
|
|
data.
It will call del_pre_func and free the item data.
Special thanks to glima for the report.
|
|
Summary: Fix to enable item deletion in the registered pop_cb function
Reviewers: Hermet
Reviewed By: Hermet
CC: seoz
Differential Revision: https://phab.enlightenment.org/D487
|
|
Summary: Author: Shinwoo Kim <cinoo.kim@samsung.com> 2012-12-11 20:13:39
Reviewers: Hermet
CC: seoz
Differential Revision: https://phab.enlightenment.org/D485
|
|
Summary:
Previously, previous view was hidden by evas_object_hide.
However, this method is no longer correct because size calculation of naviframe causes evas_object_show.
Now, previous view is hidden by emitting signal to naviframe theme and clipper hides the previous view.
Reviewers: Hermet
Reviewed By: Hermet
CC: seoz
Differential Revision: https://phab.enlightenment.org/D484
|
|
Escape key.
Now fileselector accepts the key event on Enter and Escape.
|
|
|
|
|
|
shoudl fix T799
|
|
- When appending an object to the focus custom chain,
event callback about deletion should be added.
- When a widget is deleted, its focus custom chain should be
managed correctly.
|