From: Ben Pfaff Date: Sun, 28 Jul 2013 23:43:13 +0000 (-0700) Subject: pspp-sheet-view: Fix bug that omitted bottom of cell grid lines. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=209fcc2d582be812858b179d4c8b54d4a2b797eb;p=pspp pspp-sheet-view: Fix bug that omitted bottom of cell grid lines. --- 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,