Gui: remove command description label in Customize -> Keyboard

Because long description may cause undesired dialog layout changes. The
description is available through tool tip of the command tree widget.
This commit is contained in:
Zheng, Lei
2022-03-12 15:06:50 +08:00
committed by wwmayer
parent 64bddb0d88
commit 93c4c0884e
2 changed files with 1 additions and 36 deletions

View File

@@ -13,7 +13,7 @@
<property name="windowTitle">
<string>Keyboard</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout" stretch="1,0">
<layout class="QVBoxLayout" name="verticalLayout" stretch="1">
<item>
<widget class="QSplitter" name="splitter">
<property name="orientation">
@@ -308,39 +308,6 @@ same time. The one with the highest prioirty will be triggered.</string>
</widget>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="sizeConstraint">
<enum>QLayout::SetDefaultConstraint</enum>
</property>
<item>
<widget class="QLabel" name="texLabel">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Description:</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="textLabelDescription">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11"/>

View File

@@ -391,8 +391,6 @@ void DlgCustomKeyboardImp::on_commandTreeWidget_currentItemChanged(QTreeWidgetIt
ui->buttonAssign->setEnabled(!ui->editShortcut->text().isEmpty() && (ks != ks3));
ui->buttonReset->setEnabled((ks != ks2));
}
ui->textLabelDescription->setText(Action::commandToolTip(cmd, false));
}
/** Shows all commands of this category */