Work around Windows bug that limits menu bar sub-menu to 17 points.
(MenuItem item)
| 1814 | |
| 1815 | /** Work around Windows bug that limits menu bar sub-menu to 17 points. */ |
| 1816 | private static void fixFontSize(MenuItem item) { |
| 1817 | if (IJ.isWindows() && item!=null) |
| 1818 | item.setFont(getCachedFont()); |
| 1819 | } |
| 1820 | |
| 1821 | } |
no test coverage detected