From 8be5b0567556987025fbfd7caf050469f29d6dfe Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 8 Jan 2013 11:19:14 +0000 Subject: [PATCH] tasks gadgets now apply the selected style ticket #2140 SVN revision: 82405 --- ChangeLog | 1 + NEWS | 1 + src/modules/tasks/e_mod_main.c | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5bf1bd73b..d5ee9216c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/NEWS b/NEWS index 78c545753..34745751e 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/src/modules/tasks/e_mod_main.c b/src/modules/tasks/e_mod_main.c index aa8400f0c..fb8a9049f 100644 --- a/src/modules/tasks/e_mod_main.c +++ b/src/modules/tasks/e_mod_main.c @@ -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;