mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
fix: use the actual top anchor in SetMarginsPreset (#6118)
This commit is contained in:
@@ -43,7 +43,7 @@ END TEMPLATE-->
|
||||
|
||||
### Bugfixes
|
||||
|
||||
*None yet*
|
||||
* `LayoutContainer.SetMarginsPreset` and `SetAnchorAndMarginPreset` now correctly use the provided control's top anchor when calculating the margins for its presets; it previously used the bottom anchor instead. This may result in a few UI differences, by a few pixels at most.
|
||||
|
||||
### Other
|
||||
|
||||
|
||||
@@ -326,7 +326,7 @@ namespace Robust.Client.UserInterface.Controls
|
||||
var parentSize = control.Parent?.Size ?? Vector2.Zero;
|
||||
|
||||
var anchorLeft = control.GetValue<float>(AnchorLeftProperty);
|
||||
var anchorTop = control.GetValue<float>(AnchorBottomProperty);
|
||||
var anchorTop = control.GetValue<float>(AnchorTopProperty);
|
||||
var anchorRight = control.GetValue<float>(AnchorRightProperty);
|
||||
var anchorBottom = control.GetValue<float>(AnchorBottomProperty);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user