Skip to content

Commit

Permalink
チェック漏れ。
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanasu committed Dec 22, 2023
1 parent 4363a06 commit 1c2a0c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/component/card-stack/card-stack.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,8 @@ export class CardStackComponent implements OnChanges, AfterViewInit, OnDestroy {
}, disabled: this.cards.length == 0 },
ContextMenuSeparator,
(this.isShowTotal
? { name: '☑ 枚数を表示', action: () => { this.cardStack.isShowTotal = false; } }
: { name: '☐ 枚数を表示', action: () => { this.cardStack.isShowTotal = true; } }
? { name: '☑ 枚数を表示', action: () => { this.cardStack.isShowTotal = false; }, checkBox: 'check' }
: { name: '☐ 枚数を表示', action: () => { this.cardStack.isShowTotal = true; }, checkBox: 'check' }
),
{ name: 'カードサイズを揃える', action: () => { if (this.cardStack.topCard) this.cardStack.unifyCardsSize(this.cardStack.topCard.size); }, disabled: this.cards.length == 0 },
ContextMenuSeparator,
Expand Down

0 comments on commit 1c2a0c3

Please sign in to comment.