I dug further, and the issue also appears in the C implementation, the
issue is not in the Python wrapper itself. The following piece of C code
demonstrates it:

    // compile with: gcc `pkg-config --cflags --libs gtk+-2.0
libgnomeui-2.0` test.c

    #include <gtk/gtk.h>
    #include <libgnomeui/libgnomeui.h>

    int main(int argc, char **argv)
    {
        gtk_init(&argc, &argv);
        GtkWidget* window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
        GtkWidget* href = gnome_href_new("http://ubuntu.com";, "Ubuntu");
        gtk_container_add(GTK_CONTAINER(window), href);
        gtk_widget_show(href);
        gtk_widget_show(window);
        gtk_main();
        return 0;
    }

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/905139

Title:
  Opening an URL launches the default browser at address "%u"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libgnomeui/+bug/905139/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to