diff --git a/CHANGELOG.md b/CHANGELOG.md index 9543eba..4489cf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,24 +2,4 @@ # InCoder Changelog -## [Unreleased] - -## [0.0.1] - 2024-12-09 - -### Added - -- Initial project setup. -- Added Anthropic API key support. - -### Changed - -- Improved Markdown parser. -- Updated plugin properties: - - pluginSinceBuild set to `233`. - - pluginUntilBuild updated to `243.*`. -- Documentation updates: - - Updated `README.md` and license. - -### Fixed - -- Optimized disk space usage for GitHub workflow. \ No newline at end of file +## [Unreleased] \ No newline at end of file diff --git a/src/main/java/com/github/damiano1996/jetbrains/incoder/ui/components/DescriptionLabel.java b/src/main/java/com/github/damiano1996/jetbrains/incoder/ui/components/DescriptionLabel.java index 33db609..e62fe20 100644 --- a/src/main/java/com/github/damiano1996/jetbrains/incoder/ui/components/DescriptionLabel.java +++ b/src/main/java/com/github/damiano1996/jetbrains/incoder/ui/components/DescriptionLabel.java @@ -1,5 +1,6 @@ package com.github.damiano1996.jetbrains.incoder.ui.components; +import com.github.damiano1996.jetbrains.incoder.tool.window.ToolWindowColors; import com.intellij.openapi.util.NlsContexts; import com.intellij.ui.JBColor; import com.intellij.ui.components.JBTextArea; @@ -11,6 +12,7 @@ public class DescriptionLabel extends JBTextArea { public DescriptionLabel(@NotNull @NlsContexts.Label String text) { super(text); setForeground(JBColor.namedColor("Label.infoForeground")); + setBackground(ToolWindowColors.TRANSPARENT); setWrapStyleWord(true); setLineWrap(true); setEditable(false); @@ -19,12 +21,10 @@ public DescriptionLabel(@NotNull @NlsContexts.Label String text) { } @Override - public void setCaretPosition(int position) { - // Prevent caret movement - } + public void setCaretPosition(int position) {} @Override public boolean isFocusable() { - return false; // Ensure no focus + return false; } }