https://bugs.kde.org/show_bug.cgi?id=387153

            Bug ID: 387153
           Summary: libinput-backend touchpad KCM only used on Wayland
                    despite appearing to have support under X11
           Product: Touchpad-KCM
           Version: unspecified
          Platform: Ubuntu Packages
                OS: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: kcm
          Assignee: rajeeshknamb...@gmail.com
          Reporter: pointedst...@zoho.com
  Target Milestone: ---

[plasma-desktop git repo]/kcms/touchpad/src/kcm/touchpadconfigcontainer.cpp has
the following code:

{
    Q_DECL_EXPORT void kcminit_touchpad()
    {
        if (KWindowSystem::isPlatformX11()) {
            TouchpadConfigXlib::kcmInit();
        }
    }
}

TouchpadConfigContainer::TouchpadConfigContainer(QWidget *parent, const
QVariantList &args)
    : KCModule(parent, args)
{
    if (KWindowSystem::isPlatformX11()) {
        m_plugin = new TouchpadConfigXlib(this);
    } else if (KWindowSystem::isPlatformWayland()) {
        m_plugin = new TouchpadConfigLibinput(this);
    }
}

That's fine for Wayland where libinput is mandatory, but there is no logic for
handling the (very common) case where libinput is being used with X11.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to