Fix HiDPI issue of sample track window

Fix one of the HiDPI issues of the sample track window by removing the
hard coded font size of the name line edit.
This commit is contained in:
Michael Gregorius
2023-07-29 10:19:47 +02:00
parent a9d49d4ff7
commit 67dcdf2c65

View File

@@ -74,7 +74,6 @@ SampleTrackWindow::SampleTrackWindow(SampleTrackView * tv) :
// setup line edit for changing sample track name
m_nameLineEdit = new QLineEdit;
m_nameLineEdit->setFont(pointSize<9>(m_nameLineEdit->font()));
connect(m_nameLineEdit, SIGNAL(textChanged(const QString&)),
this, SLOT(textChanged(const QString&)));