From 90351b2f1d82bb9cae2d1e8bb64c62b554a75e7e Mon Sep 17 00:00:00 2001 From: Yuriy Puchkov Date: Thu, 18 Feb 2021 08:43:07 +0200 Subject: [PATCH] Code refactoring - clang-format --- src/config/shortcutswidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/shortcutswidget.cpp b/src/config/shortcutswidget.cpp index c1c30825..64b13296 100644 --- a/src/config/shortcutswidget.cpp +++ b/src/config/shortcutswidget.cpp @@ -91,8 +91,8 @@ void ShortcutsWidget::initInfoTable() m_table->setItem(i, 0, new QTableWidgetItem(description)); const auto key_sequence = identifier.isEmpty() - ? default_key_sequence - : m_config.shortcut(identifier); + ? default_key_sequence + : m_config.shortcut(identifier); #if defined(Q_OS_MACOS) QTableWidgetItem* item = new QTableWidgetItem(nativeOSHotKeyText(key_sequence));