From b6efdf108e20f4ad683ceea088545fe50afa1543 Mon Sep 17 00:00:00 2001 From: alberth Date: Tue, 6 Oct 2009 18:24:06 +0000 Subject: [PATCH] (svn r17724) -Codechange: Merge magic height values toghether in finances window. --- src/company_gui.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/company_gui.cpp b/src/company_gui.cpp index 52bfcf4801..c75bb5ff25 100644 --- a/src/company_gui.cpp +++ b/src/company_gui.cpp @@ -91,8 +91,8 @@ struct ExpensesList { }; static const ExpensesList _expenses_list_types[] = { - ExpensesList(_expenses_list_1, lengthof(_expenses_list_1), lengthof(_expenses_list_1) * 10), - ExpensesList(_expenses_list_2, lengthof(_expenses_list_2), lengthof(_expenses_list_2) * 10 + 3 * 12), + ExpensesList(_expenses_list_1, lengthof(_expenses_list_1), lengthof(_expenses_list_1) * 10 + 26), + ExpensesList(_expenses_list_2, lengthof(_expenses_list_2), lengthof(_expenses_list_2) * 10 + 3 * 12 + 26), }; /** Widgets of the company finances windows. */ @@ -350,9 +350,9 @@ struct CompanyFinancesWindow : Window { this->widget[CFW_EXPS_PANEL].bottom = this->widget[CFW_EXPS_PANEL].top; } int height = this->widget[CFW_EXPS_PANEL].bottom - this->widget[CFW_EXPS_PANEL].top + 1; - if (_expenses_list_types[type].height + 26 != height) { + if (_expenses_list_types[type].height != height) { this->SetDirty(); - ResizeWindowForWidget(this, CFW_EXPS_PANEL, 0, _expenses_list_types[type].height - height + 26); + ResizeWindowForWidget(this, CFW_EXPS_PANEL, 0, _expenses_list_types[type].height - height); this->SetDirty(); return; }