[frameworks-kwidgetsaddons] [Bug 489727] Searching for "font" returns unrelated results
Christoph Cullmann
bugzilla_noreply at kde.org
Sun Mar 23 19:06:01 GMT 2025
https://bugs.kde.org/show_bug.cgi?id=489727
Christoph Cullmann <christoph at cullmann.io> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |christoph at cullmann.io,
| |kdelibs-bugs at kde.org
Assignee|konsole-devel at kde.org |cfeck at kde.org
Component|general |general
Version|24.05.1 |unspecified
Product|konsole |frameworks-kwidgetsaddons
--- Comment #3 from Christoph Cullmann <christoph at 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 the assignee for the bug.
More information about the konsole-devel
mailing list