From fb5ba63878fd835e041d3174424318621de6b50c Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Fri, 6 Feb 2004 22:56:43 +0000 Subject: Make middle-click paste work with urls with IDN domain names. Fixes the 2004-02-06 Christian Persch * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): Make middle-click paste work with urls with IDN domain names. Fixes the epiphany equivalent of galeon bug 133633. --- ChangeLog | 7 +++++++ src/ephy-tab.c | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 17eba10fc..0648cc784 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-02-06 Christian Persch + + * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): + + Make middle-click paste work with urls with IDN domain names. + Fixes the epiphany equivalent of galeon bug 133633. + 2004-02-06 Christian Persch * embed/mozilla/EventContext.cpp: diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 2d62bc6de..260d58828 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -1078,7 +1078,8 @@ ephy_tab_dom_mouse_click_cb (EphyEmbed *embed, { gtk_selection_convert (GTK_WIDGET (window), GDK_SELECTION_PRIMARY, - GDK_SELECTION_TYPE_STRING, + /* See bug #133633 */ + gdk_atom_intern ("UTF8_STRING", FALSE), GDK_CURRENT_TIME); } /* we didn't handle the event */ -- cgit v1.2.3