Improve message for unsupported field types

This commit is contained in:
Martchus 2019-02-13 19:09:13 +01:00
parent 57396807d5
commit 849baa8192
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ ClearLineEdit *TagFieldEdit::setupDescriptionLineEdit()
*/
QLabel *TagFieldEdit::setupTypeNotSupportedLabel()
{
auto *const label = new QLabel(tr("editing widget for field type not supported"), this);
auto *const label = new QLabel(tr("no widget for editing this field type available"), this);
m_layout->addWidget(label);
m_widgets << label;
return label;