Skip to content

Commit

Permalink
fix: shortcut key display error on mac (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
nowhszh authored Jul 18, 2023
1 parent c890c48 commit 88abcec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/src/optionsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,8 @@ void OptionsDialog::onButtonBoxClicked( QAbstractButton* button )

KeySequencePresenter::KeySequencePresenter( const QString& keySequence )
{
keySequenceLabel_ = new QLabel( keySequence );
keySequenceLabel_
= new QLabel( QKeySequence( keySequence ).toString( QKeySequence::NativeText ) );

auto editButton = new QPushButton();
editButton->setText( "..." );
Expand Down

0 comments on commit 88abcec

Please sign in to comment.