Skip to content

Commit dc90b2f

Browse files
committed
Settings: transform search keyword to lower case
1 parent ab3bb63 commit dc90b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/ceco/oreo/gravitybox/GravityBoxSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,7 @@ public boolean onQueryTextSubmit(String text) {
12061206
Toast.makeText(GravityBoxSettings.this,
12071207
R.string.search_keyword_short, Toast.LENGTH_SHORT).show();
12081208
} else {
1209-
mSearchQuery = text.trim();
1209+
mSearchQuery = text.trim().toLowerCase(Locale.getDefault());
12101210
searchView.clearFocus();
12111211
search.collapseActionView();
12121212
search.setVisible(false);

0 commit comments

Comments
 (0)