Do the converse of commit
bd7c87c762c75bbb8dfb5fed23964651188ef206 so
that a TextView with Container:border-width > 0 does not get its handles
and magnified region shifted up/left from where they should be.
https://bugzilla.gnome.org/show_bug.cgi?id=786986
gint *y)
{
GtkTextViewPrivate *priv = text_view->priv;
+ gint border_width = gtk_container_get_border_width (GTK_CONTAINER (text_view));
+
+ *x += border_width;
+ *y += border_width;
if (priv->top_window)
(*y) += priv->top_window->requisition.height;