[poppler] poppler/Annot.cc

Albert Astals Cid aacid at kemper.freedesktop.org
Tue Apr 17 09:15:47 UTC 2018


 poppler/Annot.cc |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 8fe1a5b96e5ad7dac60dd0f198b3c8b18fb3c5bb
Author: Andre Heinecke <aheinecke at intevation.de>
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 <szekerest at gmail.com>
 // Copyright (C) 2017 Hans-Ulrich Jüttner <huj at froreich-bioscientia.de>
 // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <info at kdab.com>. Work sponsored by the LiMux project of the city of Munich
+// Copyright 2018 Andre Heinecke <aheinecke at intevation.de>
 //
 // 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" :


More information about the poppler mailing list