Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BaraMGB committed Aug 2, 2024
1 parent d679f2b commit b2f5f5e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/gui/tracks/TrackLabelButton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ TrackLabelButton::TrackLabelButton( TrackView * _tv, QWidget * _parent ) :
else
{
setFixedSize( 160, 29 );
m_renameLineEdit->move( 26, ( height() / 2 - m_renameLineEdit->sizeHint().height() / 2 ) + 1 );
m_renameLineEdit->setFixedWidth( width() - 31 );
m_renameLineEdit->move(26, ( height() / 2 - m_renameLineEdit->sizeHint().height() / 2 ) + 1);
m_renameLineEdit->setFixedWidth(width() - 31);
connect( m_renameLineEdit, SIGNAL(editingFinished()), this, SLOT(renameFinished()));
}

Expand All @@ -76,6 +76,8 @@ TrackLabelButton::TrackLabelButton( TrackView * _tv, QWidget * _parent ) :





void TrackLabelButton::rename()
{
if (isInCompactMode())
Expand Down

0 comments on commit b2f5f5e

Please sign in to comment.