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 3a242be98ff5..bbd48a859f34 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 @@ -92,6 +92,9 @@ public class CCCreateAnswerPlaceholderPanel extends JPanel { if (myShownHintNumber == 0 && hintText.equals(ourDefaultHintText)) { myHints.set(myShownHintNumber, ""); } + else { + myHints.set(myShownHintNumber, hintText); + } return myHints; }