Skip to content

Commit

Permalink
Fix MC-237493 - Telemetry mode couldn't be toggled to None anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
isXander committed Dec 5, 2023
1 parent 0a881bb commit f890e82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
}

group = "dev.isxander"
version = "1.20.3+1.0"
version = "1.20.3+1.1"

loom {
splitEnvironmentSourceSets()
Expand Down
1 change: 1 addition & 0 deletions changelogs/1.20.3/1.20.3+1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix MC-237493 - Telemetry mode couldn't be toggled to None anymore.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class TelemetryInfoScreenMixin {
* @reason
*/
@Overwrite
private AbstractWidget createTelemetryButton() {
return ((DebugifyTelemetryAccessor) options).getTelemetryOption().createButton(options, 0, 0, 150, state -> telemetryEventWidget.onOptInChanged(state == DebugifyTelemetry.ALL));
private AbstractWidget createTelemetryCheckbox() {
return ((DebugifyTelemetryAccessor) options).getTelemetryOption().createButton(options, 0, 0, 308, state -> telemetryEventWidget.onOptInChanged(state == DebugifyTelemetry.ALL));
}
}

0 comments on commit f890e82

Please sign in to comment.