From 9e11d0790f6c78e0e2cc906e42af5cc885961b3f Mon Sep 17 00:00:00 2001 From: Allan Odgaard Date: Sun, 9 Sep 2012 02:27:08 +0200 Subject: [PATCH] Increase folding image scale factor to 1.5 --- Frameworks/OakTextView/src/OakDocumentView.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/OakTextView/src/OakDocumentView.mm b/Frameworks/OakTextView/src/OakDocumentView.mm index 1fe6629e..d8c1bd0e 100644 --- a/Frameworks/OakTextView/src/OakDocumentView.mm +++ b/Frameworks/OakTextView/src/OakDocumentView.mm @@ -183,7 +183,7 @@ private: // Since all images are vector based and don’t contain any spacing to // align it, we need to set the individual scaleFactor per image. if([aName hasPrefix:@"Bookmark"]) scaleFactor = 1.0; - if([aName hasPrefix:@"Folding"]) scaleFactor = 1.2; + if([aName hasPrefix:@"Folding"]) scaleFactor = 1.5; if([aName hasPrefix:@"Search"]) scaleFactor = 1.2; [res setSize:NSMakeSize(round(width * scaleFactor), round(height * scaleFactor))];