forked from mia/Aegisub
Fix uncaught exception when resampling empty drawings
This commit is contained in:
parent
cf76fb343f
commit
1f66e776c1
1 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,8 @@ namespace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final.pop_back();
|
if (final.size())
|
||||||
|
final.pop_back();
|
||||||
return final;
|
return final;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue