flacjacket / pywlroots

Python binding to the wlroots library using cffi
University of Illinois/NCSA Open Source License
51 stars 12 forks source link

Seat.touch_point_clear_focus: Wrong signature: Takes too many arguments #189

Closed heuer closed 4 months ago

heuer commented 4 months ago

Seat.touch_point_clear takes too many arguments:

def touch_point_clear_focus(
        self,
        surface: Surface,
        time_msec: int,
        touch_id: int,
        surface_x: float,
        surface_y: float,
    ) -> None:

Should be:

def touch_point_clear_focus(self, time_msec: int, touch_id: int) -> None: