Fixed insert fx popup replace button size (#1013)

This commit is contained in:
Jeremy Bullock 2017-03-08 05:58:51 -07:00 committed by shun-iwasawa
parent 9f852fc460
commit 3bcfe87610

View file

@ -222,7 +222,7 @@ InsertFxPopup::InsertFxPopup()
m_buttonLayout->addWidget(addBtn);
QPushButton *replaceBtn = new QPushButton(tr("Replace"), this);
replaceBtn->setFixedSize(65, 25);
replaceBtn->setFixedHeight(25);
connect(replaceBtn, SIGNAL(clicked()), this, SLOT(onReplace()));
m_buttonLayout->addWidget(replaceBtn);
}