tasks gadgets now apply the selected style

ticket #2140


SVN revision: 82405
This commit is contained in:
Mike Blumenkrantz 2013-01-08 11:19:14 +00:00
parent 9543eb5c37
commit 8be5b05675
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
* Added elm win trap callback for base size setting, calling this causes ICCCM hints to be applied
2013-01-07 Tom "TAsn" Hacohen

1
NEWS
View File

@ -69,3 +69,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;