We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 211f39d commit b636a84Copy full SHA for b636a84
ReClass.NET/UI/MemoryRecordList.cs
@@ -84,7 +84,11 @@ public MemoryRecordList()
84
};
85
86
resultDataGridView.AutoGenerateColumns = false;
87
- resultDataGridView.DefaultCellStyle.Font = Program.MonoSpaceFont.Font;
+ resultDataGridView.DefaultCellStyle.Font = new Font(
88
+ Program.MonoSpaceFont.Font.FontFamily,
89
+ DpiUtil.ScaleIntX(11),
90
+ GraphicsUnit.Pixel
91
+ );
92
resultDataGridView.DataSource = bindings;
93
}
94
0 commit comments