c2b42c25 by 柴进

fix(qml): 调整 ImageGenTab 三段高度,预览不被挤掉

- 参考图 Card  preferredHeight 240 → 200
- 提示词+生成设置行 preferredHeight 360 → 320
- 生成设置卡内 spacing 16 → 12, group 内 6 → 4
- caption "生成模式/宽高比/图片尺寸" 完整显示, 预览卡占满底部

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a0660bb7
......@@ -13,7 +13,8 @@ Item {
// ===== 参考图片卡片 =====
Card {
Layout.fillWidth: true
implicitHeight: 240
Layout.preferredHeight: 200
Layout.minimumHeight: 180
ColumnLayout {
anchors.fill: parent
......@@ -71,8 +72,8 @@ Item {
RowLayout {
spacing: App.Theme.space4
Layout.fillWidth: true
Layout.preferredHeight: 360
Layout.minimumHeight: 340
Layout.preferredHeight: 320
Layout.minimumHeight: 320
// 提示词
Card {
......