From: jpbruyere Date: Tue, 2 Aug 2016 00:09:03 +0000 (+0200) Subject: test stacking orientation for contentSize of stack adjustments X-Git-Tag: v0.4~20 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=7da9c43d438eb88e13ddb6556660f8fd80d6be8e;p=jp%2Fcrow.git test stacking orientation for contentSize of stack adjustments --- diff --git a/src/GraphicObjects/GraphicObject.cs b/src/GraphicObjects/GraphicObject.cs index 7a2e8ec5..865e664c 100644 --- a/src/GraphicObjects/GraphicObject.cs +++ b/src/GraphicObjects/GraphicObject.cs @@ -251,10 +251,12 @@ namespace Crow //we should adapt contentSize //TODO:check case when child become stretched, and another stretched item already exists. if (_parent is GenericStack) {//TODO:check if I should test Group instead - if (lastWP == Measure.Fit) - (_parent as GenericStack).contentSize.Width -= this.LastSlots.Width; - else - (_parent as GenericStack).contentSize.Width += this.LastSlots.Width; + if ((_parent as GenericStack).Orientation == Orientation.Horizontal) { + if (lastWP == Measure.Fit) + (_parent as GenericStack).contentSize.Width -= this.LastSlots.Width; + else + (_parent as GenericStack).contentSize.Width += this.LastSlots.Width; + } } } @@ -277,10 +279,12 @@ namespace Crow if (HeightPolicy != lastHP) { NotifyValueChanged ("HeightPolicy", HeightPolicy); if (_parent is GenericStack) { - if (lastHP == Measure.Fit) - (_parent as GenericStack).contentSize.Height -= this.LastSlots.Height; - else - (_parent as GenericStack).contentSize.Height += this.LastSlots.Height; + if ((_parent as GenericStack).Orientation == Orientation.Vertical) { + if (lastHP == Measure.Fit) + (_parent as GenericStack).contentSize.Height -= this.LastSlots.Height; + else + (_parent as GenericStack).contentSize.Height += this.LastSlots.Height; + } } }