diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-tab.c | 3 |
2 files changed, 9 insertions, 1 deletions
@@ -1,5 +1,12 @@ 2004-02-06 Christian Persch <chpe@cvs.gnome.org> + * 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 <chpe@cvs.gnome.org> + * embed/mozilla/EventContext.cpp: Excise old galeon 1, non ported, defined-out code. 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 */ |