icons for desktop added

This commit is contained in:
RememBerBer 2021-11-24 21:20:46 +08:00
parent 17c022d0fb
commit 21cd579878
4 changed files with 2 additions and 0 deletions

BIN
assets/linux/MooInfo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
assets/mac/MooInfo.icns Normal file

Binary file not shown.

BIN
assets/windows/MooInfo.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -258,6 +258,8 @@ public class CpuForm {
BigDecimal divide = new BigDecimal(currentFreq[i]).divide(new BigDecimal(1000000000), 2, RoundingMode.HALF_UP); BigDecimal divide = new BigDecimal(currentFreq[i]).divide(new BigDecimal(1000000000), 2, RoundingMode.HALF_UP);
String freqStr = divide + " GHz"; String freqStr = divide + " GHz";
textField.setText(freqStr); textField.setText(freqStr);
// TODO to fix
cpuForm.getFreqLabel().setText(freqStr); cpuForm.getFreqLabel().setText(freqStr);
} }