[#2179] Fix mount name column text being cut off

This commit is contained in:
SiboVG 2023-04-07 00:36:37 +02:00
parent 27de9f6692
commit 7380143cd8

View File

@ -25,7 +25,7 @@ public class MotorMountConfigurationPanel extends JPanel {
table.setShowVerticalLines(false);
table.setRowSelectionAllowed(false);
table.setColumnSelectionAllowed(false);
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
table.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN);
table.setAutoCreateColumnsFromModel(false);
TableColumnModel columnModel = table.getColumnModel();