added troubleshooting

This commit is contained in:
aomizu
2025-06-20 13:36:44 +09:00
parent 2fbb67a50f
commit 99bb8ed838
6 changed files with 181 additions and 2 deletions

View File

@@ -142,6 +142,11 @@ func createBottomBar(myWindow fyne.Window) fyne.CanvasObject {
showOptionsPopup()
})
// Troubleshooting button
troubleshootingButton = widget.NewButton("Troubleshooting", func() {
showTroubleshootingPopup()
})
// GitHub button
githubButton := widget.NewButton("GitHub", func() {
githubURL := "https://github.com/tairasu/TurtleSilicon"
@@ -168,7 +173,7 @@ func createBottomBar(myWindow fyne.Window) fyne.CanvasObject {
leftButtons := container.NewHBox(
optionsButton,
widget.NewSeparator(), // Visual separator
troubleshootingButton,
githubButton,
)