diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-27 03:06:40 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-27 03:06:40 +0800 |
commit | 0aa7075d818bf177390385274c82a50a8c80136f (patch) | |
tree | 999103fa6aed37e6ddcf56591b1a3fe3c9215401 | |
parent | df3757dada805af9f6f187f74b58075fff337e30 (diff) | |
download | gsoc2013-evolution-0aa7075d818bf177390385274c82a50a8c80136f.tar.gz gsoc2013-evolution-0aa7075d818bf177390385274c82a50a8c80136f.tar.zst gsoc2013-evolution-0aa7075d818bf177390385274c82a50a8c80136f.zip |
Draw one more line.
* e-shell-about-box.c (timeout_callback): Draw one more line.
svn path=/trunk/; revision=14161
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-about-box.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index ea611c8803..06fb202fb9 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,9 @@ 2001-10-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-about-box.c (timeout_callback): Draw one more line. + +2001-10-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-view-menu.c (command_about_box): Set the GtkWindow policy so that @allow_shrink, @allow_grow and @auto_shrink are all %FALSE. diff --git a/shell/e-shell-about-box.c b/shell/e-shell-about-box.c index cf974c65f9..d932abc17b 100644 --- a/shell/e-shell-about-box.c +++ b/shell/e-shell-about-box.c @@ -136,7 +136,7 @@ timeout_callback (void *data) 0, 0, TEXT_X_OFFSET, TEXT_Y_OFFSET, TEXT_WIDTH, TEXT_HEIGHT); - for (i = 0; i < TEXT_HEIGHT / line_height + 2; i ++) { + for (i = 0; i < TEXT_HEIGHT / line_height + 3; i ++) { const char *line; int x; |