poppler/Annot.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 8fe1a5b96e5ad7dac60dd0f198b3c8b18fb3c5bb Author: Andre Heinecke <[email protected]> Date: Tue Apr 17 10:02:40 2018 +0200 Fix parsing of focus out actions The key is uppercase B with lowercase L. Not I. diff --git a/poppler/Annot.cc b/poppler/Annot.cc index c6c2c745..95498560 100644 --- a/poppler/Annot.cc +++ b/poppler/Annot.cc @@ -37,6 +37,7 @@ // Copyright (C) 2015 Tamas Szekeres <[email protected]> // Copyright (C) 2017 Hans-Ulrich Jüttner <[email protected]> // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich +// Copyright 2018 Andre Heinecke <[email protected]> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git @@ -221,7 +222,7 @@ static LinkAction* getAdditionalAction(Annot::AdditionalActionsType type, Object type == Annot::actionMousePressed ? "D" : type == Annot::actionMouseReleased ? "U" : type == Annot::actionFocusIn ? "Fo" : - type == Annot::actionFocusOut ? "BI" : + type == Annot::actionFocusOut ? "Bl" : type == Annot::actionPageOpening ? "PO" : type == Annot::actionPageClosing ? "PC" : type == Annot::actionPageVisible ? "PV" : _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
