Uppercase letters were accidently converted in the wrong way, and therefore,
ignored in the find panel. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6852 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
218f7a3586
commit
bf26236cc2
@ -109,7 +109,7 @@ FindTextView::HexReformat(int32 oldCursor, int32 &newCursor)
|
||||
|
||||
char c = text[i];
|
||||
if (c >= 'A' && c <= 'F')
|
||||
c += 'A' - 'a';
|
||||
c += 'a' - 'A';
|
||||
if ((c >= 'a' && c <= 'f') || (c >= '0' && c <= '9'))
|
||||
insert[out++] = c;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user