Skip to content

Commit

Permalink
plugin: change default setting DEFAULT_CUDA_ENABLED to false
Browse files Browse the repository at this point in the history
  • Loading branch information
gileli121 committed Apr 25, 2021
1 parent 0aa7d2b commit 378acfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JAVA/src/main/java/glasscode/GlassCodeStorage.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class GlassCodeStorage implements PersistentStateComponent<GlassCodeStora
private static final int DEFAULT_BRIGHTNESS = 60;
private static final int DEFAULT_BLUR_TYPE = 0;
private static final int DEFAULT_TEXT_EXTRA_BRIGHTNESS = 0;
private static final boolean DEFAULT_CUDA_ENABLED = true;
private static final boolean DEFAULT_CUDA_ENABLED = false;
private static final boolean DEFAULT_IS_GLASS_ENABLED = false;
private static final boolean DEFAULT_USE_CONTRAST_THEME = true;

Expand Down

1 comment on commit 378acfc

@gileli121
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is change is because for some computers the renderer will fail to work correctly when the flag enabled

Please # to comment.