Released version 2.3

This commit is contained in:
cybermind 2015-03-19 18:35:28 +05:00
parent c0807df223
commit 0259e68eb9
2 changed files with 4 additions and 4 deletions

View file

@ -194,11 +194,11 @@ void UpdateDisplay()
UI.InfoPanel.Draw();
DrawResources();
UI.ButtonPanel.Draw();
UI.StatusLine.Draw();
UI.StatusLine.DrawCosts();
UI.ButtonPanel.Draw();
}
UI.StatusLine.DrawCosts();
DrawTimer();
}

View file

@ -806,11 +806,11 @@ void CButtonPanel::Draw()
for (int i = 0; i < (int) UI.ButtonPanel.Buttons.size(); ++i) {
if (ButtonAreaUnderCursor == ButtonAreaButton &&
ButtonUnderCursor == i && KeyState != KeyStateInput) {
DrawPopup(buttons[i], UI.ButtonPanel.Buttons[i], UI.ButtonPanel.Buttons[i].X,
UI.ButtonPanel.Buttons[i].Y);
if (!Preference.NoStatusLineTooltips) {
UpdateStatusLineForButton(buttons[i]);
}
DrawPopup(buttons[i], UI.ButtonPanel.Buttons[i], UI.ButtonPanel.Buttons[i].X,
UI.ButtonPanel.Buttons[i].Y);
}
}
}