Comment 4 for bug 1543075

Revision history for this message
Michael Heyns (mike-bean-heyns) wrote :

Release 2.0 shows the same behaviour. I believe I am using gtk3, lightdm-webkit-greeter pulls
webkitgtk3-2.4.9 and I can use it without gtk2 installed.

I have tried the following to no effect, I'm not certain if it is even correct:

    #if GTK_CHECK_VERSION(3,0,0)
        gdk_window_set_cursor (gdk_get_default_root_window (), gdk_cursor_new (GDK_LEFT_PTR));
    #else
        gdk_window_set_cursor (gdk_get_default_root_window (), gdk_cursor_new_for_display (gdk_display_get_default (), GDK_LEFT_PTR));
    #endif

I also tried simply replacing the line. No change.

I have also set the cursor in gtk3 settings.ini and gtk2 rc for good measure.