@@ -35,13 +35,13 @@ QgsFilterLineEdit::QgsFilterLineEdit( QWidget *parent, const QString &nullValue
QIcon clearIcon;
clearIcon.addPixmap ( QgsApplication::getThemeIcon ( " /mIconClearText.svg" ).pixmap ( QSize ( iconSize, iconSize ) ), QIcon::Normal, QIcon::On );
clearIcon.addPixmap ( QgsApplication::getThemeIcon ( " /mIconClearTextHover.svg" ).pixmap ( QSize ( iconSize, iconSize ) ), QIcon::Selected, QIcon::On );
mClearAction = new QAction ( clearIcon, this );
mClearAction = new QAction ( clearIcon, QString (), this );
mClearAction ->setCheckable ( false );
addAction ( mClearAction , QLineEdit::TrailingPosition );
connect ( mClearAction , &QAction::triggered, this , &QgsFilterLineEdit::clearValue );
QIcon searchIcon = QgsApplication::getThemeIcon ( " /search.svg" );
mSearchAction = new QAction ( searchIcon, this );
mSearchAction = new QAction ( searchIcon, QString (), this );
mSearchAction ->setCheckable ( false );
addAction ( mSearchAction , QLineEdit::TrailingPosition );
mSearchAction ->setVisible ( false );
This comment has been minimized.
Not sure if this related but now actions overlaps and can not be triggered by mouse anymore.

This comment has been minimized.
where does it happen?
I could not reproduce in Python
This comment has been minimized.
I see this with all QgsFilterLineEdit widgets in QGIS. For example inside Datasource Manager or filter in Processing toolbox. Probably, I picked wrong commit from #6070.
This comment has been minimized.
still not able to reproduce the issue.
Which Qt version are you using?
Can you make a small screenshot gif to show how it ended up like this?