Skip to content

Commit 927561b

Browse files
committed
fix(gui): remove un support call to customize function in ChatCodingPanel.kt
Previously, the row element was unnecessarily customized with unscaled gaps, which could potentially cause layout issues and unnecessary computations. This commit removes the call to the customize function, ensuring a cleaner and more efficient GUI implementation.
1 parent 70f24f4 commit 927561b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/cc/unitmesh/devti/gui/chat/ChatCodingPanel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class ChatCodingPanel(private val chatCodingService: ChatCodingService, val disp
8181
val actionLink = panel {
8282
row {
8383
text(AutoDevBundle.message("label.submit.issue"))
84-
}.customize(UnscaledGapsY(0, 18));
84+
}
8585
}
8686

8787
inputSection = AutoDevInputSection(chatCodingService.project, disposable)

0 commit comments

Comments
 (0)