Search/Repalce: change empty is_multiple columns to operate on [''], permitting .* to match the column.

This commit is contained in:
Charles Haley 2011-09-17 12:20:25 +02:00
parent 5f83f8e501
commit 1cbb8323af

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):