Skip to content

Commit

Permalink
Fix crash with Debugify
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerozgen committed Mar 15, 2023
1 parent 89a0b38 commit 2eab1ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ loader_version=0.14.12
fabric_version=0.72.0+1.19.3

# Mod Properties
mod_version=1.5.5+1.19.3
mod_version=1.5.6+1.19.3
maven_group=jerozgen
archives_base_name=language-reload

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public void setFocused(boolean focused) {
};
searchBox.setChangedListener(__ -> refresh());
addSelectableChild(searchBox);
setInitialFocus(searchBox);

var listWidth = Math.min(width / 2 - 4, 200);
var it = (LanguageOptionsScreen) (Object) this;
Expand All @@ -84,6 +83,7 @@ public void setFocused(boolean focused) {
addDrawableChild(ButtonWidget.builder(ScreenTexts.DONE, this::onDone)
.dimensions(width / 2 - 155 + 160, height - 28, 150, 20)
.build());
setInitialFocus(searchBox);

super.init();
ci.cancel();
Expand Down

0 comments on commit 2eab1ab

Please sign in to comment.