Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EunoiaC committed Apr 22, 2021
1 parent 1175cf6 commit 3eb9f3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public QuestionList(String[] questions, QuestionListSettings settings, Context c
}

public void createQuestionViews(){
int i = 0;
int i = 1;
linearLayout = new LinearLayout(context);
linearLayout.setOrientation(LinearLayout.VERTICAL);
if (questions == null){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void run() {
QuestionListSettings questionListSettings = new QuestionListSettings.SettingsBuilder()
.setCheckboxLocation(Question.LEFT)
.setCheckBoxOrientation(Question.FULL_VERTICAL)
.setNumberEnabled(false)
.setNumberEnabled(true)
.setOptionTextSize(QuestionListSettings.TEXT_SIZE_DEFAULT)
.setQuestionTextSize(QuestionListSettings.TEXT_SIZE_DEFAULT)
.setSpacing(15)
Expand Down

0 comments on commit 3eb9f3b

Please sign in to comment.