Changed label to now read #new/#total instead of New: #.

SVN revision: 23325
This commit is contained in:
Christopher Michael 2006-06-09 08:38:11 +00:00
parent 72d4b6b818
commit 9c52327d4d
1 changed files with 1 additions and 1 deletions

View File

@ -937,7 +937,7 @@ _mail_set_text(void *data)
{
edje_object_part_text_set(inst->mail->mail_obj, "name", cb->user);
snprintf(buf, sizeof(buf), "New: %d", mb->num_new);
snprintf(buf, sizeof(buf), "%d/%d", mb->num_new, mb->num_total);
edje_object_part_text_set(inst->mail->mail_obj, "new_label", buf);
edje_object_signal_emit(inst->mail->mail_obj, "new_mail", "");