From 8d0c15bb974050db966407e2d9e77ec824f4c1e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 24 Mar 2018 18:02:17 +0100 Subject: [PATCH] Qt/Search: Simplify placeholder text A search box is a common UI element. We don't need to explicitly tell the user that they need to type a search term. Also, Let's use the common "Search ..." placeholder text instead and make the string shorter for localisation. --- Source/Core/DolphinQt2/SearchBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/SearchBar.cpp b/Source/Core/DolphinQt2/SearchBar.cpp index d4ccb8638e..27ed057f52 100644 --- a/Source/Core/DolphinQt2/SearchBar.cpp +++ b/Source/Core/DolphinQt2/SearchBar.cpp @@ -24,7 +24,7 @@ void SearchBar::CreateWidgets() m_search_edit = new QLineEdit; m_close_button = new QPushButton(tr("Close")); - m_search_edit->setPlaceholderText(tr("Type your search term here")); + m_search_edit->setPlaceholderText(tr("Search games...")); auto* layout = new QHBoxLayout;