From 209fcc2d582be812858b179d4c8b54d4a2b797eb Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 28 Jul 2013 16:43:13 -0700 Subject: [PATCH] pspp-sheet-view: Fix bug that omitted bottom of cell grid lines. --- src/ui/gui/pspp-sheet-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/gui/pspp-sheet-view.c b/src/ui/gui/pspp-sheet-view.c index 468dbae8e2..070d010880 100644 --- a/src/ui/gui/pspp-sheet-view.c +++ b/src/ui/gui/pspp-sheet-view.c @@ -4165,7 +4165,7 @@ pspp_sheet_view_bin_expose (GtkWidget *widget, background_area.x + background_area.width, background_area.y); - if (y_offset + max_height >= event->area.height) + if (y_offset + max_height <= event->area.height) gdk_draw_line (event->window, tree_view->priv->grid_line_gc[widget->state], background_area.x, background_area.y + max_height, -- 2.30.2