Use 28px tree row height in Comfortable mode at default font size
In line with design
This commit is contained in:
parent
71d2cbd66a
commit
4e889934b9
1 changed files with 1 additions and 1 deletions
|
@ -1346,7 +1346,7 @@ class VirtualizedTable extends React.Component {
|
|||
if (!this.props.disableFontSizeScaling) {
|
||||
rowHeight *= Zotero.Prefs.get('fontSize');
|
||||
}
|
||||
rowHeight += Zotero.Prefs.get('uiDensity') === 'comfortable' ? 10 : 5;
|
||||
rowHeight += Zotero.Prefs.get('uiDensity') === 'comfortable' ? 11 : 5;
|
||||
|
||||
// @TODO: Check row height across platforms and remove commented code below
|
||||
// padding
|
||||
|
|
Loading…
Reference in a new issue