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

Christoph Cullmann <christ...@cullmann.io> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |christ...@cullmann.io,
                   |                            |kdelibs-b...@kde.org
           Assignee|konsole-de...@kde.org       |cf...@kde.org
          Component|general                     |general
            Version|24.05.1                     |unspecified
            Product|konsole                     |frameworks-kwidgetsaddons

--- Comment #3 from Christoph Cullmann <christ...@cullmann.io> ---
I think that is due to searching in potential rich text with

template<typename WidgetType>
static QList<QWidget *> hasMatchingText(const QString &text, QWidget *page)
{
    QList<QWidget *> ret;
    const auto widgets = page->findChildren<WidgetType *>();
    for (auto label : widgets) {
        if (removeAcceleratorMarker(label->text()).contains(text,
Qt::CaseInsensitive)) {
            ret << label;
        }
    }
    return ret;
}

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

Reply via email to