FileType panel: use correct label for signature

We used the wrong c'tor for the signature BTextControl, ending up
with the internal widget name as label ("signature" <-> "Signature:").
This commit is contained in:
Humdinger 2019-10-12 08:33:46 +02:00
parent fb8915c671
commit 5ad67ec1e7
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ ApplicationTypeWindow::ApplicationTypeWindow(BPoint position,
// Signature
fSignatureControl = new BTextControl("signature",
B_TRANSLATE("Signature:"), new BMessage(kMsgSignatureChanged));
B_TRANSLATE("Signature:"), NULL, new BMessage(kMsgSignatureChanged));
fSignatureControl->SetModificationMessage(
new BMessage(kMsgSignatureChanged));