Skip to content

Commit

Permalink
Disable focus for new channel button in Mixer (#7597)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakertooth authored Nov 27, 2024
1 parent 95a0518 commit 5acc796
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/gui/MixerView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ MixerView::MixerView(Mixer* mixer) :
newChannelBtn->setObjectName("newChannelBtn");
newChannelBtn->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Expanding);
newChannelBtn->setFixedWidth(mixerChannelSize.width());
newChannelBtn->setFocusPolicy(Qt::NoFocus);
connect(newChannelBtn, SIGNAL(clicked()), this, SLOT(addNewChannel()));
ml->addWidget(newChannelBtn, 0);

Expand Down

0 comments on commit 5acc796

Please sign in to comment.