Skip to content

Commit

Permalink
bump crengine: various fixes (#658)
Browse files Browse the repository at this point in the history
Includes:
- table captions: fix link, highlighting and possible segfault
- update French.pattern
- ldomXPointer::toPoint(): add optional use_getRectEx param
cre.cpp: make getPosFromXPointer() uses use_getRectEx=true
  • Loading branch information
poire-z authored Apr 22, 2018
1 parent 4364f79 commit 2faf089
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cre.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ static int getPosFromXPointer(lua_State *L) {
int pos = 0;
ldomXPointer xp = doc->dom_doc->createXPointer(lString16(xpointer_str));

lvPoint pt = xp.toPoint();
lvPoint pt = xp.toPoint(true); // use_getRectEx, for better accuracy
if (pt.y > 0) {
pos = pt.y;
}
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/kpvcrlib/crengine

0 comments on commit 2faf089

Please sign in to comment.