mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-01 05:48:22 +03:00
Use the correct app language when searching in the settings
This commit is contained in:
parent
2e538b8959
commit
3223ec04e3
1 changed files with 4 additions and 1 deletions
|
@ -2,6 +2,7 @@ package org.schabi.newpipe.settings;
|
||||||
|
|
||||||
import static org.schabi.newpipe.util.Localization.assureCorrectAppLanguage;
|
import static org.schabi.newpipe.util.Localization.assureCorrectAppLanguage;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
@ -228,7 +229,9 @@ public class SettingsActivity extends AppCompatActivity implements
|
||||||
|
|
||||||
|
|
||||||
// Build search items
|
// Build search items
|
||||||
final PreferenceParser parser = new PreferenceParser(getApplicationContext(), config);
|
final Context searchContext = getApplicationContext();
|
||||||
|
assureCorrectAppLanguage(searchContext);
|
||||||
|
final PreferenceParser parser = new PreferenceParser(searchContext, config);
|
||||||
final PreferenceSearcher searcher = new PreferenceSearcher(config);
|
final PreferenceSearcher searcher = new PreferenceSearcher(config);
|
||||||
|
|
||||||
// Find all searchable SettingsResourceRegistry fragments
|
// Find all searchable SettingsResourceRegistry fragments
|
||||||
|
|
Loading…
Add table
Reference in a new issue