svx/source/form/labelitemwindow.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 48ba98a51f029cd14b5d982dab36eb581d40fef3
Author:     Heiko Tietze <tietze.he...@gmail.com>
AuthorDate: Wed Nov 29 14:29:57 2023 +0100
Commit:     Heiko Tietze <heiko.tie...@documentfoundation.org>
CommitDate: Thu Nov 30 11:41:38 2023 +0100

    Resolves tdf#158412 - Don't show chevron in quick find bar
    
    Change-Id: I50f0bb7d8a406b77baccc626ca99b656d170ecf1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160093
    Tested-by: Jenkins
    Reviewed-by: Heiko Tietze <heiko.tie...@documentfoundation.org>

diff --git a/svx/source/form/labelitemwindow.cxx 
b/svx/source/form/labelitemwindow.cxx
index 1ccbe6c5d156..c9afd1534acc 100644
--- a/svx/source/form/labelitemwindow.cxx
+++ b/svx/source/form/labelitemwindow.cxx
@@ -50,7 +50,8 @@ void LabelItemWindow::set_label(const OUString& rLabel, const 
LabelItemWindowTyp
         m_xLabel->set_font_color(Color(0x00, 0x47, 0x85));
         m_xBox->set_background(Color(0xBD, 0xE5, 0xF8)); // same as 
InfobarType::INFO
     }
-    m_xLabel->set_visible(!rLabel.isEmpty());
+    m_xLabel->set_visible(
+        true); // always show and not just if !rLabel.isEmpty() to not make 
the chevron appear
 }
 
 OUString LabelItemWindow::get_label() const { return m_xLabel->get_label(); }

Reply via email to