mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
zoneview improvement
This commit is contained in:
parent
ff4b451e55
commit
cc8de80db8
14 changed files with 277 additions and 176 deletions
|
|
@ -86,7 +86,7 @@ void Player::actMoveHandToBottomLibrary()
|
|||
|
||||
void Player::actViewLibrary()
|
||||
{
|
||||
emit toggleZoneView(this, "deck", 0);
|
||||
emit toggleZoneView(this, "deck", -1);
|
||||
}
|
||||
|
||||
void Player::actViewTopCards()
|
||||
|
|
@ -101,17 +101,17 @@ void Player::actViewTopCards()
|
|||
|
||||
void Player::actViewGraveyard()
|
||||
{
|
||||
emit toggleZoneView(this, "grave", 0);
|
||||
emit toggleZoneView(this, "grave", -1);
|
||||
}
|
||||
|
||||
void Player::actViewRfg()
|
||||
{
|
||||
emit toggleZoneView(this, "rfg", 0);
|
||||
emit toggleZoneView(this, "rfg", -1);
|
||||
}
|
||||
|
||||
void Player::actViewSideboard()
|
||||
{
|
||||
emit toggleZoneView(this, "sb", 0);
|
||||
emit toggleZoneView(this, "sb", -1);
|
||||
}
|
||||
|
||||
void Player::addZone(CardZone *z)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue