Skip to content

Commit

Permalink
fix(gui): remove un support call to customize function in ChatCodingP…
Browse files Browse the repository at this point in the history
…anel.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.
  • Loading branch information
phodal committed Mar 8, 2024
1 parent 70f24f4 commit 927561b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -81,7 +81,7 @@ class ChatCodingPanel(private val chatCodingService: ChatCodingService, val disp
val actionLink = panel {
row {
text(AutoDevBundle.message("label.submit.issue"))
}.customize(UnscaledGapsY(0, 18));
}
}

inputSection = AutoDevInputSection(chatCodingService.project, disposable)
Expand Down

0 comments on commit 927561b

Please sign in to comment.