From 6c3c26714029daaac719a3445d54bfc59f4881a6 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 30 Jan 2023 23:56:00 +0100 Subject: [PATCH] Rename "Keybindings" panel to "Actions & Keybindings" (closes #2363) --- apps/OpenSpace/ext/launcher/src/profile/profileedit.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/OpenSpace/ext/launcher/src/profile/profileedit.cpp b/apps/OpenSpace/ext/launcher/src/profile/profileedit.cpp index 072d3a3017..da72404dc5 100644 --- a/apps/OpenSpace/ext/launcher/src/profile/profileedit.cpp +++ b/apps/OpenSpace/ext/launcher/src/profile/profileedit.cpp @@ -184,9 +184,8 @@ void ProfileEdit::createWidgets(const std::string& profileName) { QGridLayout* container = new QGridLayout; container->setColumnStretch(1, 1); - _keybindingsLabel = new QLabel("Keybindings"); + _keybindingsLabel = new QLabel("Actions & Keybindings"); _keybindingsLabel->setObjectName("heading"); - _keybindingsLabel->setWordWrap(true); container->addWidget(_keybindingsLabel, 0, 0); QPushButton* keybindingsProperties = new QPushButton("Edit"); @@ -345,7 +344,9 @@ void ProfileEdit::initSummaryTextForEachCategory() { QString::fromStdString(summarizeProperties(_profile.properties)) ); - _keybindingsLabel->setText(labelText(_profile.keybindings.size(), "Keybindings")); + _keybindingsLabel->setText( + labelText(_profile.keybindings.size(), "Actions & Keybindings") + ); _keybindingsEdit->setText(QString::fromStdString( summarizeKeybindings(_profile.keybindings, _profile.actions) ));