From d798766f2e9d9ee0059768c2c18d9d39d57cc304 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 30 Jun 2013 14:37:24 +0000 Subject: (svn r25539) -Codechange: Setup object GUI matrix before restoring selected object, so that the matrix state can be properly set. (sbr) --- src/object_gui.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/object_gui.cpp b/src/object_gui.cpp index 8e687b836..4c1a47aa6 100644 --- a/src/object_gui.cpp +++ b/src/object_gui.cpp @@ -81,6 +81,10 @@ public: this->vscroll->SetPosition(0); this->vscroll->SetCount(ObjectClass::GetUIClassCount()); + NWidgetMatrix *matrix = this->GetWidget(WID_BO_SELECT_MATRIX); + matrix->SetScrollbar(this->GetScrollbar(WID_BO_SELECT_SCROLL)); + matrix->SetCount(ObjectClass::Get(_selected_object_class)->GetUISpecCount()); + if (this->CanRestoreSelectedObject()) { this->SelectOtherObject(_selected_object_index); } else { @@ -90,10 +94,6 @@ public: this->EnsureSelectedObjectClassIsVisible(); this->GetWidget(WID_BO_OBJECT_MATRIX)->SetCount(4); - NWidgetMatrix *matrix = this->GetWidget(WID_BO_SELECT_MATRIX); - matrix->SetScrollbar(this->GetScrollbar(WID_BO_SELECT_SCROLL)); - matrix->SetCount(ObjectClass::Get(_selected_object_class)->GetUISpecCount()); - /* If needed restore the window previous size with the stored values.*/ uint default_num_cols = this->GetMatrixColumnCount(); uint default_num_rows = this->vscroll->GetCapacity(); @@ -106,8 +106,6 @@ public: * matrix columns are visible. */ this->FindWindowPlacementAndResize(this->width, this->height); } - - if (_selected_object_index != -1) matrix->SetClicked(ObjectClass::Get(_selected_object_class)->GetUIFromIndex(_selected_object_index)); } virtual ~BuildObjectWindow() @@ -424,6 +422,7 @@ public: const ObjectSpec *spec = objclass->GetSpec(i); if (spec->IsAvailable()) { _selected_object_class = j; + this->GetWidget(WID_BO_SELECT_MATRIX)->SetCount(ObjectClass::Get(_selected_object_class)->GetUISpecCount()); this->SelectOtherObject(i); return; } -- cgit v1.2.3-54-g00ecf