Skip to content

Commit cf6ae55

Browse files
committed
updated for version 7.3.347
Problem: When dropping text from a browser on Vim it receives HTML even though "html" is excluded from 'clipboard'. (Andrei Avk) Solution: Fix the condition for TARGET_HTML.
1 parent b2ebf7c commit cf6ae55

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/gui_gtk_x11.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3081,7 +3081,7 @@ gui_gtk_set_dnd_targets(void)
30813081

30823082
for (i = 0; i < (int)N_DND_TARGETS; ++i)
30833083
{
3084-
if (!clip_html && selection_targets[i].info == TARGET_HTML)
3084+
if (!clip_html && dnd_targets[i].info == TARGET_HTML)
30853085
n_targets--;
30863086
else
30873087
targets[j++] = dnd_targets[i];

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,8 @@ static char *(features[]) =
714714

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
347,
717719
/**/
718720
346,
719721
/**/

0 commit comments

Comments
 (0)