()
| 1415 | } |
| 1416 | |
| 1417 | private static double defaultStrokeWidth() { |
| 1418 | double defaultWidth = defaultStrokeWidth; |
| 1419 | double guiScale = Prefs.getGuiScale(); |
| 1420 | if (defaultWidth<=1 && guiScale>1.0) { |
| 1421 | defaultWidth = guiScale; |
| 1422 | if (defaultWidth<1.5) defaultWidth = 1.5; |
| 1423 | } |
| 1424 | return defaultWidth; |
| 1425 | } |
| 1426 | |
| 1427 | /** Returns the current handle size. */ |
| 1428 | public int getHandleSize() { |
no test coverage detected