projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a580213
)
make page 000 display firstpage theme element for wizard.
author
Carsten Haitzler
<raster@rasterman.com>
Tue, 1 May 2012 11:33:19 +0000
(11:33 +0000)
committer
Carsten Haitzler
<raster@rasterman.com>
Tue, 1 May 2012 11:33:19 +0000
(11:33 +0000)
SVN revision: 70575
src/modules/wizard/page_000.c
patch
|
blob
|
history
diff --git
a/src/modules/wizard/page_000.c
b/src/modules/wizard/page_000.c
index
0aea858
..
b7b07c4
100644
(file)
--- a/
src/modules/wizard/page_000.c
+++ b/
src/modules/wizard/page_000.c
@@
-26,8
+26,14
@@
_next_page(void *data __UNUSED__)
EAPI int
wizard_page_show(E_Wizard_Page *pg __UNUSED__)
{
+ Evas_Object *o;
+
e_wizard_title_set(_("Enlightenment"));
e_wizard_button_next_enable_set(0);
+ o = edje_object_add(pg->evas);
+ e_theme_edje_object_set(o, "base/theme/wizard", "e/wizard/firstpage");
+ e_wizard_page_show(o);
+
ecore_timer_add(2.0, _next_page, NULL);
return 1;
}