diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-07 06:56:43 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-07 06:56:43 +0800 |
commit | fb5ba63878fd835e041d3174424318621de6b50c (patch) | |
tree | f949884e8b7e03af52b2b1bd22cfcb6b117cdc59 | |
parent | 556e0048b57a869884511e7697dfde7918a619db (diff) | |
download | gsoc2013-epiphany-fb5ba63878fd835e041d3174424318621de6b50c.tar.gz gsoc2013-epiphany-fb5ba63878fd835e041d3174424318621de6b50c.tar.zst gsoc2013-epiphany-fb5ba63878fd835e041d3174424318621de6b50c.zip |
Make middle-click paste work with urls with IDN domain names. Fixes the
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.
-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 */ |