微调侧边栏按钮大小

This commit is contained in:
yangjiaxuan 2023-08-15 09:19:00 +08:00
parent 4cbe94ac5d
commit 66e60d8557
1 changed files with 6 additions and 0 deletions

View File

@ -392,7 +392,13 @@ MainWindow::MainWindow(const QString& appLang, QWidget *parent)
m_pbtn_push = new QPushButton(this);
m_pbtn_push->setVisible(false);
m_pbtn_push->setText("<<");
#if defined (loongarch64)
m_pbtn_push->setGeometry(0, 0, 45, 50);
#else
m_pbtn_push->setGeometry(0, 0, 25, 50);
#endif
m_widget_sideBar = new Widget_Imgproc_SideBar(this);
connect(m_pbtn_push, SIGNAL(clicked()), this, SLOT(on_m_pbtn_push_clicked()));