mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-16 01:58:33 +08:00
R28_dev1 - Turkish weather bug fix, .rel progress
This commit is contained in:
+3
-3
@@ -789,7 +789,7 @@ namespace CodeWalker
|
||||
}
|
||||
|
||||
|
||||
string find = FindTextBox.Text.ToLower();
|
||||
string find = FindTextBox.Text.ToLowerInvariant();
|
||||
Cursor = Cursors.WaitCursor;
|
||||
if (string.IsNullOrEmpty(find))
|
||||
{
|
||||
@@ -806,7 +806,7 @@ namespace CodeWalker
|
||||
int max = 500;
|
||||
foreach (RpfFile file in ScannedFiles)
|
||||
{
|
||||
if (file.Name.ToLower().Contains(find))
|
||||
if (file.Name.ToLowerInvariant().Contains(find))
|
||||
{
|
||||
AddFileNode(file, null);
|
||||
count++;
|
||||
@@ -999,7 +999,7 @@ namespace CodeWalker
|
||||
byte[] searchbytes2;
|
||||
int bytelen;
|
||||
|
||||
if (!casesen) searchtxt = searchtxt.ToLower(); //case sensitive search in lower case.
|
||||
if (!casesen) searchtxt = searchtxt.ToLowerInvariant(); //case sensitive search in lower case.
|
||||
|
||||
if (SearchIgnoreCheckBox.Checked)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user