Popdown the bubble window when text view is scrolled

This commit is contained in:
Matthias Clasen
2013-03-01 17:19:39 -05:00
parent 88623b98a7
commit 190dcfe050

View File

@ -9091,8 +9091,12 @@ text_window_scroll (GtkTextWindow *win,
gint dx,
gint dy)
{
GtkTextView *view = GTK_TEXT_VIEW (win->widget);
GtkTextViewPrivate *priv = view->priv;
if (dx != 0 || dy != 0)
{
gtk_bubble_window_popdown (GTK_BUBBLE_WINDOW (priv->selection_bubble));
gdk_window_scroll (win->bin_window, dx, dy);
}
}