Add a comma for multiple nodes
This commit is contained in:
parent
59cf1cf562
commit
dbf09dbeef
1 changed files with 1 additions and 1 deletions
|
@ -2493,7 +2493,7 @@ INT_PTR CALLBACK LodDialogCallback (
|
|||
|
||||
// Window text
|
||||
TSTR winName = (*(currentParam->ListNode->begin()))->GetName();
|
||||
winName = TSTR(_M("Node properties (")) + winName + ((currentParam->ListNode->size() > 1) ? _M(" ...)") : _M(")"));
|
||||
winName = TSTR(_M("Node properties (")) + winName + ((currentParam->ListNode->size() > 1) ? _M(", ...)") : _M(")"));
|
||||
SetWindowText(hwndDlg, winName.data());
|
||||
|
||||
// Move dialog
|
||||
|
|
Loading…
Reference in a new issue