Change default canvas stacking in auto layout

I am using auto layout a lot in my projects and think it is awesome. However, there is one small issue that annoys me a lot. The default setting for canvas stacking is always “Last on top”, which is usually not what I want. For instance when switching state of a dropdown in a layout, the dropdown list will appear below the content that is underneath it (at least in my case where the list is using absolute position). With lots of nested auto layouts, things quickly become a mess if you forgot to change this when you created the auto layout. I would suggest either of these solutions:

  • Change default to “First on top”.
  • Make the default setting optional
  • Remember the last used setting (like the animation properties work)
7 Likes

Hi @GrandPM , thanks for the feedback! Do not also forget to vote up so we can track the overall interest in the community :ballot_box_with_check:

2 Likes

That would indeed be a small but significant improvement and relief.

3 Likes

I deffo have this same problem, also it makes no sense that it’s last on top by default, it’s the opposite of what’s obvious and natural! I’d love some insight on the design process behind defaulting to last on top bcs i can never think of use cases for it

1 Like

Could be relevant, if you want to have a footer-element that overlaps the above section with some kind of graphic element… but I agree totally hat this would be the exception rather than the rule.

1 Like

Agree. The default being ‘last on top’ does not feel intuitive. In most instances personally I have to amend the default making unrequired extra steps to create my prototypes. Many frustrations with prototypes not working how expected come from this choice.

1 Like

I always arrange my designs for prototyping so that the top most layers are on top at all times.

Canvas stacking should always have an option to default to “First on Top”.

Like just add the Global Default into the Preferences. If we need to adjust we can do it on a case by case basis.

I agree. Probably 99% of the time things at the top need to appear on top (we scroll top to bottom, not bottom to top), yet the default is set to last on top? Yet another swing and a miss for Figma…

1 Like

The reason for this is mostly that it is how it works on the web. Later elements/layers will stack on top of earlier elements unless explicitly set to a different stacking position using position: absolute/relative/fixed/etc and z-index which unfortunately doesn’t exist in Figma.

I totally agreed with this, I need this update.
I lost a lot of time in changing this setting on all auto layout I create :smiling_face_with_tear:

1 Like

Interesting, good to know. Seems like many of us designers are unaware of that and still need to change it back to first on top in order to stop things from being hidden. So it doesn’t feel like it’s very helpful to include in design software.

Yes please, need this update. Thanks!