diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-19 23:03:47 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-19 23:03:47 +0300 |
| commit | d7e0755dd156673b34ee242091b7d35207a4b1ff (patch) | |
| tree | d5e5e14d6d0b80a649adddcfe0cae21e904e60b8 /internal/gui | |
| parent | 2e3cbf9ea1ef8a0563bec289a5f5d391b549a6af (diff) | |
feat: improve button icons for image generation
- Generate image: Changed from ViewRefreshIcon to FileImageIcon for clearer image representation
- Random image: Changed from MediaPhotoIcon to ColorPaletteIcon to suggest creativity/variety
These icons better represent their functions and improve UI clarity.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'internal/gui')
| -rw-r--r-- | internal/gui/app.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/gui/app.go b/internal/gui/app.go index a2ed7d5..4e70970 100644 --- a/internal/gui/app.go +++ b/internal/gui/app.go @@ -308,9 +308,9 @@ func (a *Application) setupUI() { // Create action buttons (tooltips will be set after tooltip layer is created) a.keepButton = ttwidget.NewButtonWithIcon("", theme.DocumentCreateIcon(), a.onKeepAndContinue) - a.regenerateImageBtn = ttwidget.NewButtonWithIcon("", theme.ViewRefreshIcon(), a.onRegenerateImage) + a.regenerateImageBtn = ttwidget.NewButtonWithIcon("", theme.FileImageIcon(), a.onRegenerateImage) - a.regenerateRandomImageBtn = ttwidget.NewButtonWithIcon("", theme.MediaPhotoIcon(), a.onRegenerateRandomImage) + a.regenerateRandomImageBtn = ttwidget.NewButtonWithIcon("", theme.ColorPaletteIcon(), a.onRegenerateRandomImage) a.regenerateAudioBtn = ttwidget.NewButtonWithIcon("", theme.MediaRecordIcon(), a.onRegenerateAudio) |
