Styling: MigLayout visual padding was not updated after applying style to Button, ComboBox, Spinner, TextField (and subclasses) and ToggleButton (issue #965)

This commit is contained in:
Karl Tauber
2025-02-05 12:55:12 +01:00
parent 1f594b2ba8
commit 072cc3c488
7 changed files with 44 additions and 20 deletions

View File

@@ -354,14 +354,14 @@ public class FlatSwingXTest
//---- table ----
table.setModel(new DefaultTableModel(
new Object[][] {
{new Date(1574636400000L) /* 25.11.2019, 00:00:00 */},
{new Date(1517439600000L) /* 01.02.2018, 00:00:00 */},
{new Date(1574636400000L) /* 2019-11-25 */},
{new Date(1517439600000L) /* 2018-02-01 */},
},
new String[] {
"Date"
}
) {
Class<?>[] columnTypes = new Class<?>[] {
Class<?>[] columnTypes = {
Date.class
};
@Override