jinlin
5 天以前 66f0597bf6a1e79540c6bc51dedf561c22f3bdb5
src/main/java/com/example/client/utils/Compute.java
@@ -26,13 +26,13 @@
    }*/
    public static Integer ComputeHeight(Integer topHeight, JFrame frame){
        int height = frame.getSize().height;
        Integer panelHeight = height - 70 - topHeight;
        Integer panelHeight = height - 65 - topHeight;
        return panelHeight;
    }
    public static Integer ComputeHeightWithScroll(Integer topHeight, JFrame frame){
        int height = frame.getSize().height;
        Integer panelHeight = height - 100 - topHeight;
        Integer panelHeight = height - 95 - topHeight;
        return panelHeight;
    }