🐛 Fix problems with constraints resizing

This commit is contained in:
alonso.torres 2025-02-20 11:43:02 +01:00
parent ff121d2af5
commit 2341dfb95d
3 changed files with 266 additions and 116 deletions

View file

@ -72,7 +72,7 @@ pub enum Kind {
Group(Group),
}
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Copy)]
pub enum ConstraintH {
Left,
Right,
@ -94,7 +94,7 @@ impl ConstraintH {
}
}
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Copy)]
pub enum ConstraintV {
Top,
Bottom,