Skip to content

Commit

Permalink
Merge pull request #2439 from dimagi/hint-visiblity
Browse files Browse the repository at this point in the history
Fix hint text visibility
  • Loading branch information
ShivamPokhriyal committed Feb 23, 2021
2 parents fadd9bf + 59c5548 commit 6b4ebb9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/org/commcare/views/QuestionsView.java
Expand Up @@ -129,7 +129,9 @@ public QuestionsView(Context context, FormEntryPrompt[] questionPrompts,
qw.setId(VIEW_ID + widgetIdCount++);

//Suppress the hint text if we bubbled it
qw.hideHintText();
if (hintText != null) {
qw.hideHintText();
}

widgets.add(qw);
mView.addView(qw, mLayout);
Expand Down

0 comments on commit 6b4ebb9

Please sign in to comment.