架构显示

This commit is contained in:
2024-04-25 20:59:24 +08:00
parent 19cc5cf347
commit 11b1f70ecc
3 changed files with 14 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ MainWindow::MainWindow(QWidget *parent)
void MainWindow::RefreshKernelList()
{
ui->m_nowKernel->setText(tr("Kernel: ") + kernelInformation->localKernelName());
ui->m_nowKernel->setText(tr("Kernel: ") + kernelInformation->localKernelName() + " " + tr("Arch: ") + kernelInformation->arch());
connect(kernelInformation, &KernelInformation::loadFinished, this, [this](){
qDebug() << this->kernelInformation->get_listData();
RefreshKernelListView(kernelInformation);