Merge pull request #2361 from SaxonGao-SZ/master

Use project name for web title
This commit is contained in:
Lubos Lenco 2021-10-14 12:35:03 +02:00 committed by GitHub
commit ea9b01e733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@ import json
import os
import shutil
import stat
import html
from typing import List
import bpy
@ -512,7 +513,7 @@ def write_indexhtml(w, h, is_publish):
</style>
""")
f.write("""
<title>Armory</title>
<title>"""+html.escape( wrd.arm_project_name)+"""</title>
</head>
<body style="margin: 0; padding: 0;">
""")