1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-17 03:50:03 +02:00

gui/SearchWindow.cpp: in onResult() should advance index by word length and not position.

This commit is contained in:
Henrik Hautakoski 2020-04-14 16:19:39 +02:00
parent 35706c9ba3
commit 3b1ada9cb7

View file

@ -114,7 +114,7 @@ void SearchWindow::onResult(const struct libeosio::ec_keypair* key, const struct
if (i == pos) {
out += "<font color=red>" + pub.mid(pos, len) + "</font>";
i += pos;
i += len;
continue;
}