File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -143,17 +143,17 @@ void QgsAttributeFormEditorWidget::setConstraintStatus( const QString &constrain
143
143
switch ( result )
144
144
{
145
145
case QgsEditorWidgetWrapper::ConstraintResultFailHard:
146
- mConstraintResultLabel ->setText ( QStringLiteral ( " <font color=\" #FF9800\" >✘ </font>" ) );
146
+ mConstraintResultLabel ->setText ( QStringLiteral ( " <font color=\" #FF9800\" >\u2718 </font>" ) );
147
147
mConstraintResultLabel ->setToolTip ( description.isEmpty () ? QStringLiteral ( " <b>%1</b>: %2" ).arg ( constraint, err ) : description );
148
148
break ;
149
149
150
150
case QgsEditorWidgetWrapper::ConstraintResultFailSoft:
151
- mConstraintResultLabel ->setText ( QStringLiteral ( " <font color=\" #FFC107\" >✘ </font>" ) );
151
+ mConstraintResultLabel ->setText ( QStringLiteral ( " <font color=\" #FFC107\" >\u2718 </font>" ) );
152
152
mConstraintResultLabel ->setToolTip ( description.isEmpty () ? QStringLiteral ( " <b>%1</b>: %2" ).arg ( constraint, err ) : description );
153
153
break ;
154
154
155
155
case QgsEditorWidgetWrapper::ConstraintResultPass:
156
- mConstraintResultLabel ->setText ( QStringLiteral ( " <font color=\" #259b24\" >✔ </font>" ) );
156
+ mConstraintResultLabel ->setText ( QStringLiteral ( " <font color=\" #259b24\" >\u2714 </font>" ) );
157
157
mConstraintResultLabel ->setToolTip ( QString () );
158
158
break ;
159
159
}
You can’t perform that action at this time.
0 commit comments