Fix edit button icon
This commit is contained in:
@@ -585,14 +585,7 @@ class MainViewModel : BaseViewModel, IFontResolver
|
||||
imageTitlePar.Format.Font.Size = 12;
|
||||
imageTitlePar.Format.Font.Bold = true;
|
||||
imageTitlePar.Format.Font.Name = "Noto Sans JP"; // has english letters in it, too
|
||||
if (string.IsNullOrWhiteSpace(file.Title))
|
||||
{
|
||||
imageTitlePar.AddText(file.FileName);
|
||||
}
|
||||
else
|
||||
{
|
||||
imageTitlePar.AddText(file.Title);
|
||||
}
|
||||
imageTitlePar.AddText(string.IsNullOrWhiteSpace(file.Title) ? file.FileName : file.Title);
|
||||
var receiptDatePar = section.AddParagraph();
|
||||
receiptDatePar.Format.Alignment = ParagraphAlignment.Center;
|
||||
receiptDatePar.Format.Font.Size = 12;
|
||||
|
||||
Reference in New Issue
Block a user