bug: Fix loading of bookmark name and comment from project file
Fixes #211
This commit is contained in:
parent
a17bc43d80
commit
f263685e44
@ -21,7 +21,9 @@ namespace hex {
|
||||
j.at("locked").get_to(b.locked);
|
||||
|
||||
std::copy(name.begin(), name.end(), std::back_inserter(b.name));
|
||||
b.name.push_back('\0');
|
||||
std::copy(comment.begin(), comment.end(), std::back_inserter(b.comment));
|
||||
b.comment.push_back('\0');
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user