entry: Move touch selection a little further away

Otherwise, it looks cramped, and we end up under the finger.
This commit is contained in:
Matthias Clasen 2015-06-07 21:13:16 -04:00
parent 3e386e0abb
commit d055f8e64c

View File

@ -9877,6 +9877,11 @@ bubble_targets_received (GtkClipboard *clipboard,
rect.width = 0;
}
rect.x -= 5;
rect.y -= 5;
rect.width += 10;
rect.height += 10;
gtk_popover_set_pointing_to (GTK_POPOVER (priv->selection_bubble), &rect);
gtk_widget_show (priv->selection_bubble);