Launchy doesn't support cyrillic... Do you gonna to do something??? )))
Logged In: YES user_id=580289 Originator: NO
It support cyrillic letters, but search is done in case sensitive mode and not with default theme (defauld theme use font, that haven't cyrillic letters).
See screenshot with cyrillic letters: http://i.piccy.kiev.ua/i/f3/4c/ee6a50f7945e1f23a8f04f5169d1.png
So when I type "Диа" it founds link, but when "диа" - do not.
Is there any way to add case intransitive search?
I am not pro in MFC, but I've found such workaround: Do not use CString::MakeLower() and use CharLower() function instead.
So I've make quick fix just replacing all MakeLower calls into CharLower, but may be very inefficient way:
instead of txt.MakeLower(); i wrote txt = CharLower(txt.GetBuffer());
And it works!
May be it will help to make this great utility better.
Log in to post a comment.
Logged In: YES
user_id=580289
Originator: NO
It support cyrillic letters, but search is done in case sensitive mode and not with default theme (defauld theme use
font, that haven't cyrillic letters).
See screenshot with cyrillic letters:
http://i.piccy.kiev.ua/i/f3/4c/ee6a50f7945e1f23a8f04f5169d1.png
So when I type "Диа" it founds link, but when "диа" - do not.
Is there any way to add case intransitive search?
Logged In: YES
user_id=580289
Originator: NO
I am not pro in MFC, but I've found such workaround: Do not use CString::MakeLower() and use CharLower() function instead.
So I've make quick fix just replacing all MakeLower calls into CharLower, but may be very inefficient way:
instead of
txt.MakeLower();
i wrote
txt = CharLower(txt.GetBuffer());
And it works!
May be it will help to make this great utility better.