From 8d365b23ca592007c9d08c36f21080d9fc8308b7 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Fri, 18 Apr 2014 21:11:56 +0200 Subject: [PATCH] Force default icon size for Text annotations without appearance stream --- src/shared/annotation.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/shared/annotation.js b/src/shared/annotation.js index ff46ab9a5..0596bfd81 100644 --- a/src/shared/annotation.js +++ b/src/shared/annotation.js @@ -21,6 +21,7 @@ 'use strict'; +var DEFAULT_ICON_SIZE = 22; // px var HIGHLIGHT_OFFSET = 4; // px var SUPPORTED_TYPES = ['Link', 'Text', 'Widget']; @@ -624,6 +625,8 @@ var TextAnnotation = (function TextAnnotationClosure() { if (data.hasAppearance) { data.name = 'NoIcon'; } else { + data.rect[1] = data.rect[3] - DEFAULT_ICON_SIZE; + data.rect[2] = data.rect[0] + DEFAULT_ICON_SIZE; data.name = dict.has('Name') ? dict.get('Name').name : 'Note'; }