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 200dda8 commit b46f7f6Copy full SHA for b46f7f6
qt/main_window.cpp
@@ -43,6 +43,10 @@ void MainWindow::initBufTable()
43
ui->bufferTableView->setColumnWidth(HEADER_ADDRESS_COL,
44
HEADER_ADDRESS_WIDTH);
45
ui->bufferTableView->setColumnWidth(HEADER_HEX_COL, HEADER_HEX_WIDTH);
46
+#ifdef Q_OS_WIN32
47
+ QFont font("Courier New", 6);
48
+ ui->bufferTableView->setFont(font);
49
+#endif
50
}
51
52
void MainWindow::resetBufTable()
0 commit comments