mirror of https://github.com/OpenTTD/OpenTTD
(svn r18664) -Fix [FS#3449]: Unshade shaded finances window when toggling size.
parent
2ab3e5ab40
commit
ba3ef1a2d5
|
@ -437,7 +437,13 @@ struct CompanyFinancesWindow : Window {
|
||||||
case CFW_TOGGLE_SIZE: // toggle size
|
case CFW_TOGGLE_SIZE: // toggle size
|
||||||
this->small = !this->small;
|
this->small = !this->small;
|
||||||
this->SetupWidgets();
|
this->SetupWidgets();
|
||||||
this->ReInit();
|
if (this->IsShaded()) {
|
||||||
|
/* Finances window is not resizable, so size hints given during unshading have no effect
|
||||||
|
* on the changed appearance of the window. */
|
||||||
|
this->SetShaded(false);
|
||||||
|
} else {
|
||||||
|
this->ReInit();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CFW_INCREASE_LOAN: // increase loan
|
case CFW_INCREASE_LOAN: // increase loan
|
||||||
|
|
Loading…
Reference in New Issue