notebook: Use gtk_widget_queue_draw()

This commit is contained in:
Benjamin Otte 2016-10-19 22:46:47 +02:00
parent 1df8b15711
commit ef1ba12037

View File

@ -4733,8 +4733,9 @@ gtk_notebook_redraw_arrows (GtkNotebook *notebook)
continue;
gtk_notebook_get_arrow_rect (notebook, &rect, i);
gdk_window_invalidate_rect (gtk_widget_get_window (GTK_WIDGET (notebook)),
&rect, FALSE);
gtk_widget_queue_draw_area (GTK_WIDGET (notebook),
rect.x, rect.y,
rect.width, rect.height);
}
}
}