Merge pull request #2181 from SiboVG/issue-2179

[#2179] Fix mount name column text being cut off too early
This commit is contained in:
Sibo Van Gool 2023-04-07 08:31:16 +02:00 committed by GitHub
commit e3b645314c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();