diff --git a/src/app/file/file.cpp b/src/app/file/file.cpp index 95d4cbeee..d61e27a61 100644 --- a/src/app/file/file.cpp +++ b/src/app/file/file.cpp @@ -370,11 +370,8 @@ FileOp* fop_to_save_document(Context* context, Document* document) start_from = split_filename(fop->document->filename().c_str(), left, right, &width); if (start_from < 0) { - start_from = 0; - width = - (fop->document->sprite()->totalFrames() < 10)? 1: - (fop->document->sprite()->totalFrames() < 100)? 2: - (fop->document->sprite()->totalFrames() < 1000)? 3: 4; + start_from = 1; + width = 1; } for (FrameNumber frame(0); framedocument->sprite()->totalFrames(); ++frame) {