Fix for context menu of aircraft view as reported in slack

* reported: https://swift-project.slack.com/archives/G7GD2UP9C/p1533749013000483
* logic moved to view
* removed no longer required code
This commit is contained in:
Klaus Basan
2018-08-09 01:35:27 +02:00
parent 5b44f55435
commit 79a133892b
7 changed files with 137 additions and 145 deletions

View File

@@ -124,6 +124,11 @@ namespace BlackMisc
return true;
}
bool CSimulatedAircraft::toggleFastPositionUpdates()
{
return this->setFastPositionUpdates(!this->fastPositionUpdates());
}
bool CSimulatedAircraft::setRendered(bool rendered)
{
if (m_rendered == rendered) { return false; }