diff options
Diffstat (limited to 'shell')
-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; |