From 6ae3ffefe1961847c7b8203855bf9b283ef6124b Mon Sep 17 00:00:00 2001 From: casey langen Date: Sat, 2 Jul 2022 15:34:03 -0700 Subject: [PATCH] Remove hard-coded string. --- src/musikcube/app/layout/BrowseLayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/musikcube/app/layout/BrowseLayout.cpp b/src/musikcube/app/layout/BrowseLayout.cpp index 43306ae3d..221a94e3f 100755 --- a/src/musikcube/app/layout/BrowseLayout.cpp +++ b/src/musikcube/app/layout/BrowseLayout.cpp @@ -181,7 +181,7 @@ void BrowseLayout::InitializeWindows() { this->categoryListFilter = std::make_shared(TextInput::StyleLine); this->categoryListFilter->TextChanged.connect(this, &BrowseLayout::OnCategoryFilterChanged); this->categoryListFilter->EnterPressed.connect(this, &BrowseLayout::OnCategoryFilterEnterPressed); - this->categoryListFilter->SetHint("filter"); + this->categoryListFilter->SetHint(_TSTR("search_filter_hint")); this->trackList = std::make_shared(this->playback, this->library); this->trackList->MouseEvent.connect(this, &BrowseLayout::OnWindowMouseEvent);