From ab08248a2da802de38bb017b994c22e8f7999424 Mon Sep 17 00:00:00 2001 From: Dennis Friis Date: Sun, 27 Apr 2008 17:14:35 +0000 Subject: Fix ItemContainer not being resized properly when resizing inventory window. --- ChangeLog | 5 +++++ src/gui/inventorywindow.cpp | 8 ++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 81c249cb..35992f92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-27 Dennis Friis + + * src/gui/inventorywindow.cpp: Fix ItemContainer not being resized + properly when resizing inventory window. + 2008-04-26 Dennis Friis * src/inventory.cpp: Avoid stacking equipment other than arrows. Based on diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 7062720d..91b1ce7c 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -181,12 +181,6 @@ void InventoryWindow::widgetResized(const gcn::Event &event) const gcn::Rectangle &area = getChildrenArea(); const int width = area.width; const int height = area.height; - int columns = width / 24; - - if (columns < 1) - { - columns = 1; - } // Adjust widgets mUseButton->setPosition(8, height - 8 - mUseButton->getHeight()); @@ -209,6 +203,8 @@ void InventoryWindow::widgetResized(const gcn::Event &event) mInvenScroll->setSize(width - 16, mItemDescriptionLabel->getY() - mWeightLabel->getHeight() - 18); + mItems->setWidth(width - 16); + mWeightLabel->setWidth(width - 16); } -- cgit v1.2.3-70-g09d2