Skip to content

Commit

Permalink
Fix flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Chipppppppppp committed Jan 27, 2024
1 parent c1cfd76 commit bbdb406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/io/github/chipppppppppp/lime/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public void onScrollChanged() {
ViewGroup.LayoutParams layoutParams = child.getLayoutParams();
layoutParams.height = 0;
child.setLayoutParams(layoutParams);
} else if (limeOptions.deleteRecommendation.checked && child instanceof ViewGroup) {
} else if (limeOptions.deleteAds.checked && child instanceof ViewGroup) {
ViewGroup childGroup = (ViewGroup) child;
for (int j = 0; j < childGroup.getChildCount(); ++j) {
int id = childGroup.getChildAt(j).getId();
Expand Down

0 comments on commit bbdb406

Please sign in to comment.