Christopher Michael [Tue, 4 Sep 2012 09:57:21 +0000 (09:57 +0000)]
Elm: Let's use sane window sizes in tests, yes ? :)
SVN revision: 76119
Christopher Michael [Tue, 4 Sep 2012 09:50:46 +0000 (09:50 +0000)]
Elm: Fix menus which get placed inside a toolbar for proper placement
in wayland.
NB: This also removes some unused variables.
SVN revision: 76118
Christopher Michael [Tue, 4 Sep 2012 09:42:27 +0000 (09:42 +0000)]
Elm: Fix toolbar widget to account for framespace. Fixes ticket 1418
where the 'more' button was showing the popup incorrectly.
SVN revision: 76116
Jihoon Kim [Tue, 4 Sep 2012 07:42:55 +0000 (07:42 +0000)]
add NEWS about adding enum
SVN revision: 76112
Jihoon Kim [Tue, 4 Sep 2012 02:34:19 +0000 (02:34 +0000)]
elm: Add ELM_INPUT_PANEL_RETURN_KEY_TYPE_SIGNIN
SVN revision: 76098
Tom Hacohen [Mon, 3 Sep 2012 13:55:20 +0000 (13:55 +0000)]
Elm layout: Revert "Elm layout: Fix segfault in some cases."
This reverts commit 76000.
Many thanks to glima for spanking me back into the right path.
SVN revision: 76012
Christopher Michael [Mon, 3 Sep 2012 12:12:53 +0000 (12:12 +0000)]
Elm: Fix menu test. Since we cannot get click events on elm_bg, we
have to use a manually added rectangle to receive events. This
rectangle needs to account for framespace, else it does not receieve
events for the whole area which the bg occupies.
SVN revision: 76004
Christopher Michael [Mon, 3 Sep 2012 12:04:39 +0000 (12:04 +0000)]
Elm: Fix stupid hover widget to account for framespace. Fixes ticket
1417.
SVN revision: 76003
Tom Hacohen [Mon, 3 Sep 2012 11:14:17 +0000 (11:14 +0000)]
Elm layout: Fix segfault in some cases.
Apparently this fixes stuff for Daniel Zaoui with some more complicated cases.
SVN revision: 76000
Carsten Haitzler [Mon, 3 Sep 2012 09:55:34 +0000 (09:55 +0000)]
update header #defined versions to 1.8 to make sure new apis are used
in e17 only with ifdefs.
SVN revision: 75994
Carsten Haitzler [Mon, 3 Sep 2012 09:43:35 +0000 (09:43 +0000)]
and support new ecore messages.
SVN revision: 75992
Kim Shinwoo [Mon, 3 Sep 2012 09:26:57 +0000 (09:26 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] popup - smart theme
popup have used notify its internal widget. but popup does not take care
the notify theme in its smart_theme()
the attachment just add a line to set style to the notify and test code
also. please review and give feedback. thanks.
SVN revision: 75987
Carsten Haitzler [Mon, 3 Sep 2012 09:01:21 +0000 (09:01 +0000)]
add in chglog for shinwoo's patch.
SVN revision: 75982
Carsten Haitzler [Mon, 3 Sep 2012 08:49:45 +0000 (08:49 +0000)]
use shinwoo's 2nd patch not first!
SVN revision: 75979
Kim Shinwoo [Mon, 3 Sep 2012 08:44:53 +0000 (08:44 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] access - add activate callback
till now, accessibility has used ecore_x_mouse_*_send(). the patch has
activate callback which takes place of the ecore_x_mouse_*_send() stuff.
if the access module is enabled and 'double tap' is detected, elm_win
will
receive ECORE_X_ATOM_E_ILLUME_ACCESS_CONTROL message with
ECORE_X_ATOME_E_ILLUME_ACCESS_ACTION_ACTIVATE and call the activate
callback for the accessibility. that's it.
SVN revision: 75978
Carsten Haitzler [Mon, 3 Sep 2012 08:37:12 +0000 (08:37 +0000)]
chlog for bluzery patch.
SVN revision: 75975
Bluezery [Mon, 3 Sep 2012 08:35:53 +0000 (08:35 +0000)]
From: Bluezery <ohpowel@gmail.com>
Subject: [E-devel] [patch] change plug-in loading behavior in elm_map
Elm_map have 3 modules (Tile, Route, Name) for plug-in loading
When elm_map is added, each 3 modules search plug-ins
(elm_map does use eina_module, not elm_module because elm_map loads
several modules. )
Previously, Each modules in elm_map search modules separately.
So module init /shutdown function in each plug-in is called 3times.
This can cause problems.
I fixed that module init is called at one time and module never be
unloaded (in process life-cycle).
SVN revision: 75974
Carsten Haitzler [Mon, 3 Sep 2012 07:59:01 +0000 (07:59 +0000)]
add NEWs entry for fix.
SVN revision: 75968
Carsten Haitzler [Mon, 3 Sep 2012 07:58:48 +0000 (07:58 +0000)]
spellfix
SVN revision: 75967
Carsten Haitzler [Mon, 3 Sep 2012 07:57:50 +0000 (07:57 +0000)]
add chlog for bluezery fix.
SVN revision: 75966
Carsten Haitzler [Mon, 3 Sep 2012 07:29:48 +0000 (07:29 +0000)]
add news entry for datetime fix.
SVN revision: 75962
Carsten Haitzler [Mon, 3 Sep 2012 07:25:48 +0000 (07:25 +0000)]
update po's
SVN revision: 75959
Rajeev Ranjan [Mon, 3 Sep 2012 07:24:20 +0000 (07:24 +0000)]
From: Rajeev Ranjan <rajeev.r@samsung.com>
Subject: [E-devel] [Patch] [Elementary] elm_datetime widget bug fix:
elm_datetime_field_limit_set() API is not working for min/max boundary
conditions
Hi,
Please review the attached patch for fixing issue in API
elm_datetime_field_limit_set() for boundary values.
It has been created by Sumanth for datetime widget.
[Issue Details]:
elm_datetime_field_limit_set() API is not working well for boundary
values.
[ex: for date, we can't set max limit as 31 and for minute, we can't
set 60 etc..
- it fails at boundary conditions of Min/Max limit for all
datetime fields.]
[Root cause]:
Boundary condition checking has not been done in a proper way.
[Change Description]:
Boundary checking condition is corrected and the min/max limit
boundary values are included as API input.
Signed-Off-By: Sumanth Krishna (sumanth.m@samsung.com)
Signed-Off-By: Rajeev Ranjan (rajeev.r@samsung.com)
SVN revision: 75958
Carsten Haitzler [Mon, 3 Sep 2012 07:22:28 +0000 (07:22 +0000)]
clean up changelog.
SVN revision: 75957
Jiyoun Park [Mon, 3 Sep 2012 06:55:07 +0000 (06:55 +0000)]
add signal rotation and indicator mode change.
child elms can know indicator mod change and rotation change
SVN revision: 75955
Christopher Michael [Mon, 3 Sep 2012 06:32:40 +0000 (06:32 +0000)]
Elementary: (elm_flip) Not much point in fetching the Z values here if we are not
going to use them.
SVN revision: 75953
Daniel Juyung Seo [Mon, 3 Sep 2012 06:20:47 +0000 (06:20 +0000)]
elm genlist: Fixed wrong reorder animation. Patch by Bluezery <ohpowel@gmail.com>
On Fri, Aug 31, 2012 at 8:50 PM, Bluezery <ohpowel@gmail.com> wrote:
> Hello,
>
> Sometimes reorder animation ended incorrectly
> You can test & see the problem when background color is black and
> genlist item color is white.
> I made the added value for animation as difference between old item
> position and new item position if difference is below predefined dy.
> (y = diff, if diff < dy) So item position can be finally new item
> position at last.
> Please review this patch.
>
> Thanks
SVN revision: 75950
Christopher Michael [Mon, 3 Sep 2012 06:08:52 +0000 (06:08 +0000)]
Elementary: Fix ticket #1376: Titlebar respondes to gestures in
Gesture Layer 2.
SVN revision: 75948
Jonas M. Gastal [Fri, 31 Aug 2012 12:54:53 +0000 (12:54 +0000)]
This is minor fix (typo, nuance) for genlist documentation.
Author: Bluezery <ohpowel@gmail.com>
SVN revision: 75922
Christopher Michael [Fri, 31 Aug 2012 09:27:22 +0000 (09:27 +0000)]
Elementary: Patch from Alex Wu <zhiwen.wu@linux.intel.com> to fix
glview tests in Wayland:
If the preferred engine set to "opengl_x11" and we actully run on
"wayland_egl" engine, the elm_win_add will eventully use "Software FB"
engine, and no chance to use the correct engine.
Don't set the preference but let the _elm_config to determine the right
engine.
SVN revision: 75921
Christopher Michael [Fri, 31 Aug 2012 06:20:58 +0000 (06:20 +0000)]
Elementary: Make entry compile again when using Wayland.
NB: Hmmm, not sure if this got into the 1.7 release or not. Perhaps
needs to be backported ?
SVN revision: 75917
WooHyun Jung [Fri, 31 Aug 2012 06:17:33 +0000 (06:17 +0000)]
[elm] The state of elm_check is now changed by mouse click event. Not
by mouse UP event.
SVN revision: 75916
Daniel Juyung Seo [Fri, 31 Aug 2012 04:17:57 +0000 (04:17 +0000)]
elm ChangeLog: for 75887
SVN revision: 75913
Gustavo Lima Chaves [Thu, 30 Aug 2012 23:19:05 +0000 (23:19 +0000)]
[elm] NEWS, Changelog and @since for my residual
porting work.
SVN revision: 75908
Massimo Maiurana [Thu, 30 Aug 2012 16:50:44 +0000 (16:50 +0000)]
updating portuguese and italian translations
SVN revision: 75907
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:47:31 +0000 (16:47 +0000)]
[elm] Remove text on compat transition.
SVN revision: 75906
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:47:23 +0000 (16:47 +0000)]
[elm] Keeping the on_show_region hook, as this is
hard to unhookify.
SVN revision: 75905
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:47:16 +0000 (16:47 +0000)]
[elm] Rework focus_region and on_focus_region
hooks.
The former is now issued for all scrollables, with the behavior it had
before, and the latter is a new virtual base function, with a default
implementation leading to values matching the old case where one
didn't implement the hook.
Please help me test if everything is OK -- it seems so, here.
SVN revision: 75904
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:47:10 +0000 (16:47 +0000)]
[elm] Put some order on elm_widget.c.
SVN revision: 75903
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:47:05 +0000 (16:47 +0000)]
[elm] Bump on elm_priv.h.
SVN revision: 75902
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:46:59 +0000 (16:46 +0000)]
[elm] Bye, bye, compat.
http://www.xmms.org/graphics/Gaylord.Nelson.waves.byebye.jpg
SVN revision: 75901
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:46:52 +0000 (16:46 +0000)]
[elm] I guess people never use that 'feature'?
SVN revision: 75900
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:46:46 +0000 (16:46 +0000)]
[elm] Better named function to use here.
SVN revision: 75899
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:46:40 +0000 (16:46 +0000)]
[elm] Panel now a layout (last widget, woo hoo!)
SVN revision: 75898
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:46:34 +0000 (16:46 +0000)]
[elm] Popup now a layout.
SVN revision: 75897
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:46:20 +0000 (16:46 +0000)]
[elm] More safety for box deletion.
SVN revision: 75896
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:46:12 +0000 (16:46 +0000)]
[elm] Multibuttonentry now a layout.
SVN revision: 75895
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:45:59 +0000 (16:45 +0000)]
[elm] Dangerous typo--.
SVN revision: 75894
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:45:51 +0000 (16:45 +0000)]
[elm] Ctxpopup now a layout.
SVN revision: 75893
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:45:34 +0000 (16:45 +0000)]
[elm] Prepare for removal of last widget using
internal scrolling smart cbs.
SVN revision: 75892
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:45:28 +0000 (16:45 +0000)]
[elm] Filesector entry ported.
NB: IMO this should be a child of file selector button, but we'd have
to break its theme for that. Do go we go for that?
SVN revision: 75891
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:45:15 +0000 (16:45 +0000)]
[elm] Entry now a scrollable layout.
SVN revision: 75890
Gustavo Lima Chaves [Thu, 30 Aug 2012 16:45:00 +0000 (16:45 +0000)]
[elm] Toolbar ported.
SVN revision: 75889
Daniel Juyung Seo [Thu, 30 Aug 2012 15:43:14 +0000 (15:43 +0000)]
elm naviframe: Naviframe's item Subtitle_label deleted in item_free. Patch by Shilpa Onkar Singh <shilpa.singh@samsung.com>
SVN revision: 75887
Daniel Juyung Seo [Thu, 30 Aug 2012 15:18:47 +0000 (15:18 +0000)]
elm elc_ctxpopup.c: Code refactoring.
SVN revision: 75885
Cedric BAIL [Thu, 30 Aug 2012 11:26:00 +0000 (11:26 +0000)]
ChangeLog: back in time.
SVN revision: 75875
Daniel Juyung Seo [Thu, 30 Aug 2012 11:21:34 +0000 (11:21 +0000)]
elm elm_genlist.h: Added more documentation for elm_genlist_homogeneous_set().
SVN revision: 75874
Cedric BAIL [Thu, 30 Aug 2012 10:55:40 +0000 (10:55 +0000)]
ChangeLog: state we did a release.
SVN revision: 75873
Cedric BAIL [Thu, 30 Aug 2012 10:39:06 +0000 (10:39 +0000)]
elementary: fix typo in gengrid thumb theme.
SVN revision: 75872
Daniel Juyung Seo [Thu, 30 Aug 2012 10:38:43 +0000 (10:38 +0000)]
elm datetime module: Use diskselector 'clicked' smart callback in datetime module.
SVN revision: 75871
Daniel Juyung Seo [Thu, 30 Aug 2012 10:38:38 +0000 (10:38 +0000)]
elm diskselector: Added 'clicked' smart callback to diskselector. This is called only when user clicks an item.
SVN revision: 75870
Carsten Haitzler [Thu, 30 Aug 2012 10:34:01 +0000 (10:34 +0000)]
and up ver to 1.7.99 now in svn. nack to svnrev num at end.
SVN revision: 75869
Carsten Haitzler [Thu, 30 Aug 2012 09:26:01 +0000 (09:26 +0000)]
update po's for elm
SVN revision: 75857
Daniel Juyung Seo [Thu, 30 Aug 2012 07:54:18 +0000 (07:54 +0000)]
elm diskselector: Fixed wrong icon duplication. Do not duplicate icon if icon is NULL.
This fixes following error message in diskselector.
ERR<30865>: elm_icon.c:761 elm_icon_add() safety check failed: parent == NULL
SVN revision: 75847
Daniel Juyung Seo [Thu, 30 Aug 2012 07:54:15 +0000 (07:54 +0000)]
elm elc_popup.h: Fixed typo.
SVN revision: 75846
Daniel Juyung Seo [Thu, 30 Aug 2012 07:54:12 +0000 (07:54 +0000)]
elm diskselector.edc: Fixed item/datetime/default style. Now I can see the diskselector in datetime.
SVN revision: 75845
Daniel Juyung Seo [Thu, 30 Aug 2012 07:54:00 +0000 (07:54 +0000)]
elm diskselector.edc: Added elm,action,clicked to default item style. It was working only with datetime/default style before.
SVN revision: 75844
Kim Shinwoo [Thu, 30 Aug 2012 03:05:20 +0000 (03:05 +0000)]
elm diskselector: Revert diskselector patch derived by Shinwoo Kim's diskselector patch.
That needs to be done in other way.
Revert "From: Kim Shinwoo <kimcinoo.efl@gmail.com>"
This reverts commit
9d6e461366a0eb208d75b0a1fb5c0c822b761c71.
SVN revision: 75836
Daniel Juyung Seo [Thu, 30 Aug 2012 03:05:16 +0000 (03:05 +0000)]
elm diskselector: Revert diskselector patch derived by Shinwoo Kim's diskselector patch.
That needs to be done in other way.
Revert "and 1.7 not 1.8"
This reverts commit
e05fc6782046b9ad9c5125a34a4009f34c10ed68.
SVN revision: 75835
Daniel Juyung Seo [Thu, 30 Aug 2012 03:05:13 +0000 (03:05 +0000)]
elm diskselector: Revert diskselector patch derived by Shinwoo Kim's diskselector patch.
That needs to be done in other way.
Revert "oops - forgot to fix the OTHEr auto_select too."
This reverts commit
c1e4d5c1e4b2c6d8ae7806c43fafba2ae2ea5080.
SVN revision: 75834
Carsten Haitzler [Thu, 30 Aug 2012 00:45:30 +0000 (00:45 +0000)]
oops - forgot to fix the OTHEr auto_select too.
SVN revision: 75833
Daniel Juyung Seo [Wed, 29 Aug 2012 23:38:58 +0000 (23:38 +0000)]
elm list: Do not process _size_hints_changed_cb when list is going to be deleted.
This fixes list self deletion bug when evas_object_del(list) is called inside item selected callback.
SVN revision: 75832
Carsten Haitzler [Wed, 29 Aug 2012 09:03:15 +0000 (09:03 +0000)]
and 1.7 not 1.8
SVN revision: 75821
Kim Shinwoo [Wed, 29 Aug 2012 09:02:21 +0000 (09:02 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] diskselector - select option,
disabling auto selection. datetime - show even number of items
by default, an diskselector item which is right in the center of
diskselector is selected automatically.
and if the item style emit elm,action,click signal, the item is selected
also.
so there would be a case that item select callback is called by two
ways.
one is clicking the item,
the other is locating item right in the center of diskselector (if
number
of displayed item is odd, then after scrolling the selected callback is
called always).
because of this reason, datetime module always set number of displayed
item
to even number.
to resolve this issue, i add a api to enable or disable default
behavior -
the auto selection - that can be found on the attachment.
moreover the second attachment is for datetime module, now the
datetime can
show even number of items.
SVN revision: 75820
Christopher Michael [Wed, 29 Aug 2012 07:29:21 +0000 (07:29 +0000)]
Elementary: Fix up copy/paste code to work properly with both X11 and
Wayland windows.
Remove x11, wayland, and local bits from cnp init.
Fix up elm_cnp_init to not need an object anymore.
Add missing function prototypes for the wl functions.
Add an init counter for the wl cnp init function so we don't end up
with multiple event handlers.
SVN revision: 75816
Christopher Michael [Wed, 29 Aug 2012 07:15:32 +0000 (07:15 +0000)]
Elementary: Fix selection_has_owner function. Check for valid wl
window. Thanks raster ;)
SVN revision: 75813
Carsten Haitzler [Wed, 29 Aug 2012 07:09:08 +0000 (07:09 +0000)]
fallback for not working strftime for am/pm - based on patch from
rajeev but redone simpler.
SVN revision: 75811
Christopher Michael [Wed, 29 Aug 2012 06:52:48 +0000 (06:52 +0000)]
Elementary: Copy-Paste support for Wayland Engines.
NB: Based on patch from Alex <zhiwen.wu@intel.com>, but cleaned up for
compiler warnings.
SVN revision: 75810
ChunEon Park [Wed, 29 Aug 2012 00:51:09 +0000 (00:51 +0000)]
elementary/popup,diskselector,naviframe,map - fixed edc to remove warnings
SVN revision: 75806
ChunEon Park [Wed, 29 Aug 2012 00:45:13 +0000 (00:45 +0000)]
elementary/ctxpopup - removed warnings
SVN revision: 75805
ChunEon Park [Wed, 29 Aug 2012 00:42:03 +0000 (00:42 +0000)]
elementary/hover - added images
SVN revision: 75804
ChunEon Park [Wed, 29 Aug 2012 00:34:13 +0000 (00:34 +0000)]
elementary/naviframe - [E-devel] elc_naviframe: generic parts signals missing bug fix patch
Hi All,
Please find attached elc_naviframe bug fix patch.
Change description:
Generic text parts and content parts signals not sent hence UI not coming properly issue fixed.
Thanks & Regards
Shilpa Singh
Signed-Off-By: ShilpaOnkar Singh<shilpa.singh@samsung.com>
SVN revision: 75803
Eduardo de Barros Lima [Tue, 28 Aug 2012 20:20:28 +0000 (20:20 +0000)]
elm_diskselector: Free r_list in elm_diskselector_clear()
List contains garbage at this point and causes SEGV in DiskSelector test
Fixes #1413
SVN revision: 75799
Carsten Haitzler [Tue, 28 Aug 2012 10:37:02 +0000 (10:37 +0000)]
Yes - i know. Release. Freeze. I put this in as it solves a complaint
(i guess bug report) about using cpua nd drawing while minimized.
SVN revision: 75776
Mike Blumenkrantz [Tue, 28 Aug 2012 09:53:35 +0000 (09:53 +0000)]
prevent crash when selected item hasn't been assigned a block
SVN revision: 75771
Carsten Haitzler [Tue, 28 Aug 2012 07:49:27 +0000 (07:49 +0000)]
fix cnp to only init x11 cnp if window was detected to be x11 elm win
too. :) oops.
SVN revision: 75759
Jihoon Kim [Tue, 28 Aug 2012 04:02:14 +0000 (04:02 +0000)]
[elm/index] fix indentation
SVN revision: 75745
Carsten Haitzler [Mon, 27 Aug 2012 10:24:41 +0000 (10:24 +0000)]
no this isnt release - this is simply me removing the beta tag so when
we release it's ready.
SVN revision: 75740
Carsten Haitzler [Mon, 27 Aug 2012 09:51:57 +0000 (09:51 +0000)]
update @version's
SVN revision: 75739
ChunEon Park [Mon, 27 Aug 2012 08:23:20 +0000 (08:23 +0000)]
elementary/index - [E-devel] [PATCH] elm_index : set it->letter to NULL after eina_stringshare_del
Hello all,
In elm_index.c, _item_del_pre_hook calls _item_free, where it->letter
is not set to NULL after eina_stringshare_del.
This will cause invalid access later on. The attached patch fixes the
problem, which is reproducible in my code before the fix.
Please check if this makes sense.
I am sorry that I was unable come up with a simple test app to
demonstrate the problem.
Thanks in advance.
Brian
Signed-Off-By:Brian Wang<brian.wang.0721@gmail.com>
SVN revision: 75723
ChunEon Park [Mon, 27 Aug 2012 08:22:00 +0000 (08:22 +0000)]
elementary - updated po
SVN revision: 75722
PRINCE KUMAR DUBEY [Mon, 27 Aug 2012 04:29:31 +0000 (04:29 +0000)]
elementary/segment control - elm_segment_control patch
Hi,
Attachment to the mail is elm_segment_control patch.
Change Log:
1. Generic Text support to segment items.
2. Generic Content support to segment items.
Signed-Off-By: PRINCE KUMAR DUBEY <prince.dubey>@samsung.com>
Thank you,
Prince
SVN revision: 75719
Massimo Maiurana [Sat, 25 Aug 2012 20:03:12 +0000 (20:03 +0000)]
updating portuguese and italian translations
SVN revision: 75701
Vincent Torri [Fri, 24 Aug 2012 16:23:57 +0000 (16:23 +0000)]
Elm: ALIGN is already defined on OpenBSD
Patch By Maxime Villard
SVN revision: 75684
Carsten Haitzler [Fri, 24 Aug 2012 13:18:50 +0000 (13:18 +0000)]
oops profile.src had newline! bad! fix!
SVN revision: 75660
Massimo Maiurana [Thu, 23 Aug 2012 18:08:44 +0000 (18:08 +0000)]
updating portuguese and italian translations
SVN revision: 75634
Christopher Michael [Thu, 23 Aug 2012 11:55:33 +0000 (11:55 +0000)]
Elm: Fix tickets 1375 (Pictures appear with a bottom border in Gesture
Layer) and 1380(Top of picture is missing in gesture layer 3).
SVN revision: 75622
Christopher Michael [Thu, 23 Aug 2012 11:42:51 +0000 (11:42 +0000)]
Elm: Fix ticket 1376 (gesture layer test allows events on titlebar).
SVN revision: 75620
Christopher Michael [Thu, 23 Aug 2012 11:27:43 +0000 (11:27 +0000)]
Elm: Fix ticket 1363 (Cannot change focus with Shift+Tab when using
the wayland engines).
The focus handler which traps key events needs to listen for
ISO_Left_Tab also (which is what xkb reports for Shift+Tab).
SVN revision: 75618
Eduardo de Barros Lima [Wed, 22 Aug 2012 19:55:20 +0000 (19:55 +0000)]
elm_win: Formatting
SVN revision: 75558