mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-15 08:35:11 +01:00
(svn r6727) -Fix r6619: don't disable inexistant widget
This commit is contained in:
parent
8d5033ee25
commit
5b0183ce70
@ -155,7 +155,10 @@ static void PlayerFinancesWndProc(Window *w, WindowEvent *e)
|
|||||||
PlayerID player = w->window_number;
|
PlayerID player = w->window_number;
|
||||||
const Player *p = GetPlayer(player);
|
const Player *p = GetPlayer(player);
|
||||||
|
|
||||||
SetWindowWidgetDisabledState(w, 7, p->current_loan == 0);
|
if (player == _local_player) {
|
||||||
|
/* borrow/repay buttons only exist for local player */
|
||||||
|
SetWindowWidgetDisabledState(w, 7, p->current_loan == 0);
|
||||||
|
}
|
||||||
|
|
||||||
SetDParam(0, p->name_1);
|
SetDParam(0, p->name_1);
|
||||||
SetDParam(1, p->name_2);
|
SetDParam(1, p->name_2);
|
||||||
|
Loading…
Reference in New Issue
Block a user