plasma: show the clear button of the line editor in launcher applet

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2024-04-12 19:34:50 +03:00
parent a58820267b
commit 4b78d14096

View file

@ -939,10 +939,11 @@ LauncherAppletWidget::LauncherAppletWidget(LauncherApplet* auncherapplet)
m_label->setWordWrap(false);
m_label->setText(usertext);
m_toplayout->addItem(m_label);
m_toplayout->setAlignment(m_lineedit, Qt::AlignCenter);
m_toplayout->setAlignment(m_label, Qt::AlignCenter);
m_lineedit = new Plasma::LineEdit(this);
m_lineedit->setClickMessage(i18n("Search"));
m_lineedit->setClearButtonShown(true);
m_toplayout->addItem(m_lineedit);
m_toplayout->setAlignment(m_lineedit, Qt::AlignCenter);
setFocusProxy(m_lineedit);