diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-28 22:58:25 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-28 22:58:25 +0800 |
commit | fd017fc993a6a71eb96ca67a63621cc1e21c138d (patch) | |
tree | d02841fc720238c662c71abeaa49c20871d225b4 /mail/mail-tools.c | |
parent | 906a178ce8264e7848330d5244639c0c2d856aee (diff) | |
download | gsoc2013-evolution-fd017fc993a6a71eb96ca67a63621cc1e21c138d.tar gsoc2013-evolution-fd017fc993a6a71eb96ca67a63621cc1e21c138d.tar.gz gsoc2013-evolution-fd017fc993a6a71eb96ca67a63621cc1e21c138d.tar.bz2 gsoc2013-evolution-fd017fc993a6a71eb96ca67a63621cc1e21c138d.tar.lz gsoc2013-evolution-fd017fc993a6a71eb96ca67a63621cc1e21c138d.tar.xz gsoc2013-evolution-fd017fc993a6a71eb96ca67a63621cc1e21c138d.tar.zst gsoc2013-evolution-fd017fc993a6a71eb96ca67a63621cc1e21c138d.zip |
Display the number of messages downloaded starting from one instead of
zero.
Improve the behavior of the mail view in a separate window by reusing
the same size as the last resize (we could have a better policy, but
this should be enough for now). Also, create the toolbar the right
way so that we respect the global GNOME settings without doing it
manually.
svn path=/trunk/; revision=5075
Diffstat (limited to 'mail/mail-tools.c')
-rw-r--r-- | mail/mail-tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-tools.c b/mail/mail-tools.c index 62da0dade8..b540c595e2 100644 --- a/mail/mail-tools.c +++ b/mail/mail-tools.c @@ -310,7 +310,7 @@ mail_tool_move_folder_contents (CamelFolder *source, CamelFolder *dest, gboolean /* Info */ - mail_op_set_message ("Retrieving message %d of %d", i, uids->len); + mail_op_set_message ("Retrieving message %d of %d", i + 1, uids->len); /* Get the message */ |