textview: Do not unset edition popover visibility on drag end

The code here is only meant to show the popover after text selection has
finished, there is no need to toggle it off here, plus it interacts with
long presses.
This commit is contained in:
Carlos Garnacho
2014-11-21 17:58:00 +01:00
parent c1cff4f846
commit b8d160c637

View File

@@ -7280,10 +7280,8 @@ gtk_text_view_drag_gesture_end (GtkGestureDrag *gesture,
(gtk_get_debug_flags () & GTK_DEBUG_TOUCHSCREEN) != 0 ||
gdk_device_get_source (device) == GDK_SOURCE_TOUCHSCREEN;
if (clicked_in_selection && priv->selection_bubble &&
gtk_widget_get_visible (priv->selection_bubble))
gtk_text_view_selection_bubble_popup_unset (text_view);
else if (!clicked_in_selection && is_touchscreen)
if (!clicked_in_selection && is_touchscreen &&
(!priv->selection_bubble || !gtk_widget_get_visible (priv->selection_bubble)))
gtk_text_view_selection_bubble_popup_set (text_view);
if (!is_touchscreen && clicked_in_selection &&