• R/O
  • SSH
  • HTTPS

copper: Commit


Commit MetaInfo

Revision1641 (tree)
Time2023-12-15 13:35:31
Authormiyabe

Log Message

(empty log message)

Change Summary

Incremental Difference

--- copper/trunk/homare/pom.xml (revision 1640)
+++ copper/trunk/homare/pom.xml (revision 1641)
@@ -9,7 +9,7 @@
99 <groupId>net.zamasoft</groupId>
1010 <artifactId>homare</artifactId>
1111 <packaging>jar</packaging>
12- <version>3.2.24</version>
12+ <version>3.2.27</version>
1313 <name>Homare</name>
1414 <description>印刷向けのHTML/CSSレンダリングエンジンです。</description>
1515 <url>https://copper.osdn.jp/homare/</url>
--- copper/trunk/sakae/sakae-core/src/main/java/jp/cssj/sakae/font/otf/OpenTypeFont.java (revision 1640)
+++ copper/trunk/sakae/sakae-core/src/main/java/jp/cssj/sakae/font/otf/OpenTypeFont.java (revision 1641)
@@ -183,14 +183,13 @@
183183 }
184184 } else if (CL02.contains((char) scid) && this.getWidth(sgid) > 500) {
185185 int cid = this.toChar(gid);
186- if ((CL01.contains((char) cid) && this.getWidth(gid) > 500)
187- || (CL02.contains((char) cid) && this.getWidth(gid) > 500) || CL0607.contains((char) cid)) {
186+ if ((CL01.contains((char) cid) || CL02.contains((char) cid) || CL0607.contains((char) cid))
187+ && this.getWidth(gid) > 500) {
188188 return 500;
189189 }
190- } else if (CL0607.contains((char) scid)) {
190+ } else if (CL0607.contains((char) scid) && this.getWidth(sgid) > 500) {
191191 int cid = this.toChar(gid);
192- if ((CL01.contains((char) cid) && this.getWidth(gid) > 500)
193- || (CL02.contains((char) cid) && this.getWidth(gid) > 500)) {
192+ if ((CL01.contains((char) cid) || (CL02.contains((char) cid)) && this.getWidth(gid) > 500)) {
194193 return 500;
195194 }
196195 }
Show on old repository browser