jinlin
2025-03-25 6d51ffe34d3d5c90945b91cc98f77b2a9001829f
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;
    }