backport tasks gadget fix

SVN revision: 82406
This commit is contained in:
Mike Blumenkrantz 2013-01-08 11:19:35 +00:00
parent 10c649ccdc
commit d47ea23576
3 changed files with 4 additions and 2 deletions

View File

@ -4,6 +4,7 @@
* Fixed crash when clicking apply in wallpaper settings dialog and no wallpaper is selected
* Fixed bug where disabled slider widgets could be changed with mouse wheel
* Fixed bug where fileman config slider widgets were not properly disabled
* Tasks gadgets now apply the selected style
2013-01-07 Tom "TAsn" Hacohen
* e_entry + e_scrollable: Fixed issues with smart members.

1
NEWS
View File

@ -23,3 +23,4 @@ Fixes:
* Fixed crash when clicking apply in wallpaper settings dialog and no wallpaper is selected
* Fixed bug where disabled slider widgets could be changed with mouse wheel
* Fixed bug where fileman config slider widgets were not properly disabled
* Tasks gadgets now apply the selected style

View File

@ -229,7 +229,7 @@ e_modapi_save(E_Module *m __UNUSED__)
/**************************************************************/
static E_Gadcon_Client *
_gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style __UNUSED__)
_gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style)
{
Tasks *tasks;
Evas_Object *o;
@ -240,7 +240,7 @@ _gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style __UNU
tasks = _tasks_new(gc->evas, gc->zone, id);
o = tasks->o_items;
gcc = e_gadcon_client_new(gc, name, id, E_GADCON_CLIENT_STYLE_INSET, o);
gcc = e_gadcon_client_new(gc, name, id, style, o);
gcc->data = tasks;
tasks->gcc = gcc;