(Container cnt)
| 1154 | /// |
| 1155 | /// - `cnt`: The container in the FormLayeredPane where the sheet is to be rendered. |
| 1156 | private int getPreferredH(Container cnt) { |
| 1157 | switch (getPositionInt()) { |
| 1158 | case W: |
| 1159 | case E: |
| 1160 | return cnt.getHeight(); |
| 1161 | default: |
| 1162 | return Math.min(getPreferredH(), cnt.getHeight()); |
| 1163 | } |
| 1164 | } |
| 1165 | |
| 1166 | /// Goes back to the parent sheet with a default (300ms) slide animation. If there |
| 1167 | /// is no parent sheet, then this will close the sheet. |
no test coverage detected