From 87b15df47b38d4a68da8185464c5e4228dca70df Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Mon, 19 Oct 2020 19:42:55 +0900
Subject: [PATCH] Auto adjust window size

---
 src/client/components/ui/window.vue | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/client/components/ui/window.vue b/src/client/components/ui/window.vue
index 781c6ef151..d545ac4827 100644
--- a/src/client/components/ui/window.vue
+++ b/src/client/components/ui/window.vue
@@ -315,11 +315,13 @@ export default defineComponent({
 
 		// 高さを適用
 		applyTransformHeight(height) {
+			if (height > window.innerHeight) height = window.innerHeight;
 			(this.$el as any).style.height = height + 'px';
 		},
 
 		// 幅を適用
 		applyTransformWidth(width) {
+			if (width > window.innerWidth) width = window.innerWidth;
 			(this.$el as any).style.width = width + 'px';
 		},