fix size check

This commit is contained in:
2025-07-25 21:56:32 -07:00
parent 502ca7a4f2
commit ca77c609cd
2 changed files with 5 additions and 7 deletions

View File

@@ -299,11 +299,11 @@ func showTroubleshootingPopup() {
troubleshootingCloseButton = widget.NewButton("Close", func() {})
popupContent := container.NewBorder(
nil, // top
nil, // top
container.NewCenter(troubleshootingCloseButton), // bottom
nil, // left
nil, // right
container.NewPadded(scrollContainer), // center
nil, // left
nil, // right
container.NewPadded(scrollContainer), // center
)
windowSize := currentWindow.Content().Size()