From c9dfc3e7a85ee7bb0f394f7ec5ae7330ab906dd2 Mon Sep 17 00:00:00 2001 From: "DESKTOP-64JNFCF\\keyra" Date: Sun, 24 Dec 2023 11:40:52 +0900 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E8=A8=80=E5=A4=89=E6=9B=B4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../component/game-table-mask/game-table-mask.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/component/game-table-mask/game-table-mask.component.ts b/src/app/component/game-table-mask/game-table-mask.component.ts index e7e4331c..d376a994 100644 --- a/src/app/component/game-table-mask/game-table-mask.component.ts +++ b/src/app/component/game-table-mask/game-table-mask.component.ts @@ -680,11 +680,11 @@ export class GameTableMaskComponent implements OnChanges, OnDestroy, AfterViewIn }, ContextMenuSeparator, { - name: 'ボーダーの表示', + name: 'ボーダーラインの表示', subActions: [ { name: `${this.borderType == 0 ? '◉' : '○'} 操作時のみ`, action: () => { this.borderType = 0 }, checkBox: 'radio' }, { name: `${this.borderType == 1 ? '◉' : '○'} 操作、非固定時`, action: () => { this.borderType = 1 }, checkBox: 'radio' }, - { name: `${this.borderType == 2 ? '◉' : '○'} 常に表示`, action: () => { this.borderType = 2 }, checkBox: 'radio' }, + { name: `${this.borderType == 2 ? '◉' : '○'} 固定時も表示`, action: () => { this.borderType = 2 }, checkBox: 'radio' }, ], disabled: this.isScratching },