Linux style fixes

This commit is contained in:
crschnick 2024-07-22 02:54:01 +00:00
parent 65ba63aac2
commit 97ff085e15
2 changed files with 6 additions and 1 deletions

View file

@ -120,7 +120,7 @@ public final class BrowserFileListComp extends SimpleComp {
return true;
});
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY_FLEX_LAST_COLUMN);
table.setFixedCellSize(34.0);
table.setFixedCellSize(32.0);
prepareTableSelectionModel(table);
prepareTableShortcuts(table);

View file

@ -41,6 +41,11 @@
-fx-padding: 2 0 0 0;
}
.root:linux .store-entry-grid .name {
-fx-padding: 5 0 0 0;
}
.store-entry-grid.dense .name {
-fx-padding: 0 0 0 0;
}