mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
Fixed updates of view when simulated aircraft values are updated.
* renamed view to simulated aircraft view * utility function for bool -> on/off
This commit is contained in:
@@ -154,10 +154,10 @@ namespace BlackMisc
|
||||
{
|
||||
QString s = CAircraft::convertToQString(i18n);
|
||||
s += " enabled: ";
|
||||
s += this->isEnabled() ? "yes" : "no";
|
||||
s += BlackMisc::boolToYesNo(this->isEnabled());
|
||||
s += " ";
|
||||
s += " rendered: ";
|
||||
s += this->isRendered() ? "yes" : "no";
|
||||
s += BlackMisc::boolToYesNo(this->isRendered());
|
||||
s += " ";
|
||||
s += this->m_model.toQString(i18n);
|
||||
s += " ";
|
||||
|
||||
Reference in New Issue
Block a user