Skip to content

Commit

Permalink
文言変更。
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanasu committed Dec 24, 2023
1 parent 5c20f5c commit af49fda
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -682,9 +682,9 @@ export class GameTableMaskComponent implements OnChanges, OnDestroy, AfterViewIn
{
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 == 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' },
],
disabled: this.isScratching
},
Expand Down

0 comments on commit af49fda

Please sign in to comment.