mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-07-02 11:43:40 +02:00
gui/SearchWindow.cpp: in onResult() should advance index by word length and not position.
This commit is contained in:
parent
35706c9ba3
commit
3b1ada9cb7
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ void SearchWindow::onResult(const struct libeosio::ec_keypair* key, const struct
|
||||||
|
|
||||||
if (i == pos) {
|
if (i == pos) {
|
||||||
out += "<font color=red>" + pub.mid(pos, len) + "</font>";
|
out += "<font color=red>" + pub.mid(pos, len) + "</font>";
|
||||||
i += pos;
|
i += len;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue