Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Bauer committed Aug 1, 2022
1 parent 96aeac1 commit 23a4849
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private void layoutColorButtons() {
LinearLayout buttonLayout = (LinearLayout) findViewById(R.id.buttonLayout);
buttonLayout.removeAllViews();
int buttonPadding = (int) getResources().getDimension(R.dimen.color_button_padding);
int numColors = getNumColors();
final int numColors = getNumColors();
for (int i = 0; i < numColors + 2; i++) {
final int localI = i;
ColorButton newButton = new ColorButton(this);
Expand Down

0 comments on commit 23a4849

Please sign in to comment.