diff options
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/ui/window.vue | 2 |
1 files changed, 2 insertions, 0 deletions
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'; }, |