Search/Replace: Permit .* to match empty tag like columns. Fixes #840517 (empty fields are not populated using regex in massedit)

This commit is contained in:
Kovid Goyal 2011-09-17 08:23:59 -06:00
commit d651e1911a

View File

@ -535,6 +535,8 @@ class MetadataBulkDialog(ResizableDialog, Ui_MetadataBulkDialog):
val = [v.replace('|', ',') for v in val]
else:
val = []
if not val:
val = ['']
return val
def s_r_display_bounds_changed(self, i):