Skip to content

Commit

Permalink
!使用插入时间作为空白页的时间
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Aug 25, 2022
1 parent be49698 commit ea2c60a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion App/Model/SourceItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,12 @@ internal string GetTargetPdfFileName(string targetPath) {

internal sealed class Empty : SourceItem
{
readonly DateTime _Time = DateTime.Now;

public override ItemType Type => ItemType.Empty;

public override int FileSize => 0;
public override DateTime FileTime => DateTime.Now;
public override DateTime FileTime => _Time;

public void SetPageCount(int pageCount) {
PageCount = pageCount;
Expand Down

0 comments on commit ea2c60a

Please sign in to comment.