Merge pull request #3550 from ctrlaltca/fix_hghlight

This commit is contained in:
Zach H 2019-02-03 13:35:30 -05:00 committed by GitHub
commit 5a4f020196
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1940,7 +1940,7 @@ void Player::processGameEvent(GameEvent::GameEventType type, const GameEvent &ev
}
}
void Player::setActivePlayer(bool _active)
void Player::setActive(bool _active)
{
active = _active;
table->setActive(active);

View file

@ -384,7 +384,7 @@ public:
{
return active;
}
void setActivePlayer(bool _active);
void setActive(bool _active);
void setShortcutsActive();
void setShortcutsInactive();
void updateZones();