MappingButton: don't set text twice in constructor

This commit is contained in:
Michael Maltese 2017-05-30 23:08:54 -07:00
parent 07c90bed08
commit b378ffb4ec
1 changed files with 0 additions and 1 deletions

View File

@ -19,7 +19,6 @@
MappingButton::MappingButton(MappingWidget* widget, ControlReference* ref)
: QPushButton(QString::fromStdString(ref->expression)), m_parent(widget), m_reference(ref)
{
setText(QString::fromStdString(m_reference->expression));
Connect();
}