From 59c5548581944c8df1e7aa52edce82a7b29b5e3a Mon Sep 17 00:00:00 2001 From: ShivamPokhriyal Date: Mon, 22 Feb 2021 15:11:54 +0530 Subject: [PATCH] Fix hint text visibility --- app/src/org/commcare/views/QuestionsView.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/org/commcare/views/QuestionsView.java b/app/src/org/commcare/views/QuestionsView.java index 3f53ac2799..817663864d 100644 --- a/app/src/org/commcare/views/QuestionsView.java +++ b/app/src/org/commcare/views/QuestionsView.java @@ -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);