diff --git a/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.form b/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.form index 5e4b17d84c04..de3a7827e3f1 100644 --- a/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.form +++ b/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.form @@ -1,6 +1,6 @@
- + @@ -13,62 +13,39 @@ + - - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.java b/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.java index 28cd014d3288..09a6012c5ca7 100644 --- a/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.java +++ b/python/educational-core/course-creator/src/com/jetbrains/edu/coursecreator/ui/CCCreateAnswerPlaceholderPanel.java @@ -1,5 +1,7 @@ package com.jetbrains.edu.coursecreator.ui; +import com.intellij.ui.JBColor; + import javax.swing.*; import java.awt.*; @@ -14,6 +16,7 @@ public class CCCreateAnswerPlaceholderPanel extends JPanel { add(myPanel, BorderLayout.CENTER); myHintText.setLineWrap(true); myHintText.setWrapStyleWord(true); + myHintText.setBorder(BorderFactory.createLineBorder(JBColor.border())); myAnswerPlaceholderText.grabFocus(); }