Fixed incorrect scaling with command layout

This commit is contained in:
Anuken 2022-08-01 20:56:37 -04:00
parent d301f6ebe3
commit 9a95754007

View File

@ -412,7 +412,7 @@ public class PlacementFragment{
//hacky, but forces command table to be same width as blocks
if(control.input.commandMode){
commandTable.getCells().peek().width(blockCatTable.getWidth());
commandTable.getCells().peek().width(blockCatTable.getWidth() / Scl.scl(1f));
}
wasCommandMode = control.input.commandMode;