Skip to content

Commit

Permalink
Fix some annotation flags values.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Jan 26, 2025
1 parent 79bfbb4 commit bf9f99f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tcpdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8311,15 +8311,15 @@ protected function _putannotsobjs() {
break;
}
case 'locked': {
$fval += 1 << 8;
$fval += 1 << 7;
break;
}
case 'togglenoview': {
$fval += 1 << 9;
$fval += 1 << 8;
break;
}
case 'lockedcontents': {
$fval += 1 << 10;
$fval += 1 << 9;
break;
}
default: {
Expand Down

0 comments on commit bf9f99f

Please sign in to comment.