Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

[[ Bug 22953 ]] Fix some resizing issues for Extension Builder #2146

Open
wants to merge 2 commits into
base: develop-9.6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,12 @@ on resizeStack
set the topleft of image "icon_retina" of me to tLeft,tTop
put the right of image "icon_retina" of me + tPadding into tLeft
set the topleft of image "icon" of me to tLeft,tTop

put the right of image "icon" of me + tPadding into tLeft
set the topLeft of field "label_svgicon_absent" to tLeft, tTop
set the topLeft of widget "svgicon_retina" of me to tLeft, tTop
put the right of widget "svgicon_retina" of me into tLeft
set the topLeft of widget "svgicon" of me to tLeft, tTop

# Resources
put item 1 of tRect + tMargin into tLeft
put item 3 of tRect - tMargin into tRight
Expand All @@ -446,15 +451,15 @@ on resizeStack
set the width of field "label_api" of me to tLabelWidth
set the topleft of field "label_api" of me to tLeft,tTop
put the right of field "label_api" of me + tPadding into tLeft
set the rect of field "message_api" of me to tLeft, tTop, tRight, tTop+the formattedheight of field "message_api" of me - the margins of field "message_api" of me
set the rect of field "message_api" of me to tLeft, tTop, tRight, tTop+the formattedheight of field "message_api" of me - (the margins of field "message_api" of me / 2)

# Guide
put item 1 of tRect + tMargin into tLeft
put the bottom of field "message_api" of me + tPadding into tTop
set the width of field "label_guide" of me to tLabelWidth
set the topleft of field "label_guide" of me to tLeft,tTop
put the right of field "label_guide" of me + tPadding into tLeft
set the rect of field "message_guide" of me to tLeft, tTop, tRight, tTop+the formattedheight of field "message_guide" of me - the margins of field "message_guide" of me
set the rect of field "message_guide" of me to tLeft, tTop, tRight, tTop+the formattedheight of field "message_guide" of me - (the margins of field "message_guide" of me / 2)

# Console
put item 1 of tRect + tMargin into tLeft
Expand Down
1 change: 1 addition & 0 deletions notes/bugfix-22953.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Fix some resizing issues for Extension Builder