X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/769be9881aa8d7212c6372e2fb10075cad551578..HEAD:/disobedience/autoscroll.c diff --git a/disobedience/autoscroll.c b/disobedience/autoscroll.c index bfe71c1..2b24699 100644 --- a/disobedience/autoscroll.c +++ b/disobedience/autoscroll.c @@ -68,12 +68,11 @@ static gboolean autoscroll_timeout(gpointer data) { /* see if we are near the edge. */ offset = ty - (visible_rect.y + 2 * SCROLL_EDGE_SIZE); - if (offset > 0) - { - offset = ty - (visible_rect.y + visible_rect.height - 2 * SCROLL_EDGE_SIZE); - if (offset < 0) - return TRUE; - } + if (offset > 0) { + offset = ty - (visible_rect.y + visible_rect.height - 2 * SCROLL_EDGE_SIZE); + if (offset < 0) + return TRUE; + } GtkAdjustment *vadjustment = gtk_tree_view_get_vadjustment(tree_view);