diff --git a/calibre-plugin/dialogs.py b/calibre-plugin/dialogs.py
index b191eba8..133a371b 100644
--- a/calibre-plugin/dialogs.py
+++ b/calibre-plugin/dialogs.py
@@ -272,6 +272,7 @@ class AddNewDialog(SizePersistedDialog):
self.mergedname=QLabel("mergedname")
tt = _('This name will be used with the %s setting to set the title of the new book.')%'anthology_title_pattern'
label.setToolTip(tt)
+ self.mergeshow.append(label)
self.mergedname.setToolTip(tt)
grid.addWidget(self.mergedname,row,1,1,-1)
self.l.addLayout(grid)
@@ -283,6 +284,7 @@ class AddNewDialog(SizePersistedDialog):
self.mergeddesc=QLabel("mergeddesc")
tt = _('These comments about the series will be included in the Comments of the new book.')+'' # for html for auto-wrap
label.setToolTip(tt)
+ self.mergeshow.append(label)
self.mergeddesc.setToolTip(tt)
self.mergeddesc.setWordWrap(True)
grid.addWidget(self.mergeddesc,row,1,1,-1)