🐛[bugfix] Model : overlay_image 生成する画像サイズを戻した

This commit is contained in:
misyaguziya
2024-05-08 11:01:30 +09:00
parent 6ace1ed524
commit f449b4ebf1

View File

@@ -140,9 +140,9 @@ class OverlayImage:
def getUiSize(self):
return {
"width": int(960),
"height": int(23),
"font_size": int(23),
"width": int(960*4),
"height": int(23*4),
"font_size": int(23*4),
}
def getUiColors(self, ui_type):