Fix left-click of URL/HOST by tidying what we pass to fe_open_url()
This commit is contained in:
parent
fc659a67f0
commit
ee200b97aa
|
@ -2233,7 +2233,7 @@ static void
|
|||
mg_word_clicked (GtkWidget *xtext, char *word, GdkEventButton *even)
|
||||
{
|
||||
session *sess = current_sess;
|
||||
int word_type, start, end;
|
||||
int word_type = 0, start, end;
|
||||
char *tmp;
|
||||
|
||||
if (word)
|
||||
|
@ -2256,7 +2256,8 @@ mg_word_clicked (GtkWidget *xtext, char *word, GdkEventButton *even)
|
|||
{
|
||||
case WORD_URL:
|
||||
case WORD_HOST:
|
||||
fe_open_url (word);
|
||||
word[end] = 0;
|
||||
fe_open_url (word + start);
|
||||
}
|
||||
}
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue