#577: blinking not working for static HUD labels
Only worked for dynamic labels displaying a property (mode!=NONE).
This commit is contained in:
parent
6b348dc481
commit
d051ba5cd2
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ HUD::Label::Label(HUD *hud, const SGPropertyNode *n, float x, float y) :
|
|||
|
||||
void HUD::Label::draw(void)
|
||||
{
|
||||
if (!(_mode == NONE || (_input.isValid() && blink())))
|
||||
if (!((_mode == NONE || _input.isValid()) && blink()))
|
||||
return;
|
||||
|
||||
if (_box) {
|
||||
|
|
Loading…
Add table
Reference in a new issue