elementary / greeter

Login and Lock Screen greeter for elementary OS and Pantheon, using LightDM
GNU General Public License v3.0
152 stars 39 forks source link

Revert "Implement zoom" #741

Closed lenemter closed 1 week ago

lenemter commented 1 week ago

Reverts elementary/greeter#739 Fixes https://github.com/elementary/greeter/issues/740

ryonakano commented 1 week ago

This is an issue with debian packaging. We added the new io.elementary.greeter-compositor.gschema.xml file in the #739 but it's not included in the deb file, which results the null access here:

        var schema = new GLib.Settings ("io.elementary.greeter-compositor.keybindings");

        display.add_keybinding ("zoom-in", schema, Meta.KeyBindingFlags.NONE, (Meta.KeyHandlerFunc) zoom_in);
        display.add_keybinding ("zoom-out", schema, Meta.KeyBindingFlags.NONE, (Meta.KeyHandlerFunc) zoom_out);
ryonakano commented 1 week ago

Closing because the linked issue should be fixed by 89dff87a50a714b6e68f18de387ce0d7bfe4c929, but thank you for your quick response anyways, @lenemter!