Thanks for the mod!
Unknown if its a bug but it moves two items then leaves one selected and refuses to move the rest, is this a bug? i hit the up arrow on my keyboard
I'm getting the exact same issue on this one
I was getting the same error too.
There are 2 issues in MarketSizeInfo.java
1. The first is the
HEIGHT_MIN_BORDER = 20 (
MarketSizeInfo.java - l.18) which is affecting this function: (
MarketSizeInfo.java - l.127)
private static float calcRowsVisible() {
float rowsVisible = (float)Math.floor((getScreenHeight() - HEIGHT_MIN_BORDER * 2 - HEIGHT_TAB * 2 -
HEIGHT_INFO_TOP - HEIGHT_BUTTONS_MID - HEIGHT_BAR_BOTTOM) / 2F) / 100;
return Math.min(rowsVisible, MAX_VISIBLE_ROWS);
}
For 1080p the total height border is 101 and for 960p is 41. I hard-coded the
HEIGHT_MIN_BORDER to 101 for me.
2. The second issue is: (
MarketSizeInfo.java - l.91)
private static int getWindowsPosY() {
if (!Display.isFullscreen()) {
return Display.getY() + getWinTitleBarHeight();
}
return 0;
}
It doesn't take into account borderless fullscreen, so it still adds
getWinTitleBarHeight().
I don't work with Java or these APIs usually so I hard-coded my fixes for 1080p borderless.
If you want the same fix replace TransferAllItems.jar in /jars with the attached file while we get an update.
[attachment deleted by admin]