Skip to content

Commit

Permalink
Disable mapping acelleration by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Jan 15, 2025
1 parent 631886e commit f39765f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@ApplicationScoped
public class DecompilerPaneConfig extends BasicConfigContainer {
private final ObservableInteger timeoutSeconds = new ObservableInteger(60);
private final ObservableBoolean useMappingAcceleration = new ObservableBoolean(true);
private final ObservableBoolean useMappingAcceleration = new ObservableBoolean(false);
private final ObservableBoolean acknowledgedSaveWithErrors = new ObservableBoolean(DevDetection.isDevEnv());

@Inject
Expand Down

0 comments on commit f39765f

Please sign in to comment.