Touch up the theme and text of the about page.

This commit is contained in:
Jaime Thomas
2009-02-19 23:36:06 +00:00
parent 8c1bf841e2
commit 43e68e0c3d
2 changed files with 14 additions and 13 deletions

View File

@ -46,7 +46,7 @@ ecdb_about_show(void)
edje_object_file_set(gui, em->theme_path, "ecdb/about");
edje_object_signal_callback_add(gui, "ecdb/close", "ecdb",
_ecdb_about_destroy, win);
ecore_evas_object_associate(win, gui, ECORE_EVAS_OBJECT_ASSOCIATE_BASE);
ecore_evas_object_associate(win, gui, ECORE_EVAS_OBJECT_ASSOCIATE_DEL);
edje_object_size_min_get(gui, &mw, &mh);
if (mw <= 0) mw = 350;
if (mh <= 0) mh = 350;
@ -63,8 +63,7 @@ ecdb_about_show(void)
/* Set the proper text */
edje_object_part_text_set(gui, "ecdb.about.label", "Close");
edje_object_part_text_set(gui, "ecdb.about.text",
"Copywrite ©2006-2008, by the ECDB Development Team.<br>"
"<br>"
"<e>Copywrite ©2006-2008, by the ECDB Development Team.<br></e>"
"This software is provided as-is with no explicit or implied "
"warranty. This software is governed by licensing conditions, "
"so please see the COPYING and COPYRIGHT license files installed "
@ -73,7 +72,10 @@ ecdb_about_show(void)
"not stable. Many features are incomplete or non-existant, and "
"will likely have many bugs. You have been <hilight>WARNED!</hilight>"
"<br><br>"
"Authors: Jaime Thomas <avi.thomas@gmail.com><br>"
"Contributors: Mario Danic <mario@libburnia-project.org><br>");
"<e>Authors:</e><br>"
"Jaime Thomas &lt;avi.thomas@gmail.com&gt;<br>"
"<br>"
"<e>Contributors:</e><br>"
"Mario Danic &lt;mario@libburnia-project.org&gt;<br>");
}