From 77d26d508114d96f37940ec83e040b3e31051136 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 23 Oct 2009 21:10:24 +0000 Subject: (svn r17848) -Codechange: allow overriding (some) settings of STACKED_SELECTION_ZERO_SIZE widgets via UpdateWidgetSize --- src/widget.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/widget.cpp b/src/widget.cpp index bf11a2912..880a94ae5 100644 --- a/src/widget.cpp +++ b/src/widget.cpp @@ -1291,12 +1291,19 @@ void NWidgetStacked::SetupSmallestSize(Window *w, bool init_array) /* Zero size plane selected */ if (this->shown_plane == STACKED_SELECTION_ZERO_SIZE) { - this->smallest_x = 0; - this->smallest_y = 0; this->fill_x = false; this->fill_y = false; - this->resize_x = 0; - this->resize_y = 0; + + Dimension size = {0, 0}; + Dimension resize = {0, 0}; + Dimension padding = {0, 0}; + /* Here we're primarily interested in the value of resize */ + w->UpdateWidgetSize(this->index, &size, padding, &resize); + + this->smallest_x = size.width; + this->smallest_y = size.height; + this->resize_x = resize.width; + this->resize_y = resize.height; return; } -- cgit v1.2.3-54-g00ecf