Do not add background dummy in selection

This commit is contained in:
Jesse van den Kieboom 2014-01-01 18:32:55 +01:00
parent 94ff779311
commit 1c36a1eff6

View file

@ -240,7 +240,10 @@ function get_selection()
for (var i = 0; i < files.length; i++)
{
ret.push(prepare_patchset(files[i]));
if (!has_class(files[i], 'background'))
{
ret.push(prepare_patchset(files[i]));
}
}
return ret;