Skip to content

Commit

Permalink
added resolution tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
Collateral committed Oct 6, 2022
1 parent c4a7e49 commit 773c80f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/net/vulkanmod/config/Options.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ public static Option<?>[] getVideoOpts() {
config.resolution = value;
fullscreenDirty = true;
},
() -> config.resolution),
() -> config.resolution)
.setTooltip(Text.of("Only works on fullscreen")),
new SwitchOption("Windowed Fullscreen",
value -> {
config.windowedFullscreen = value;
Expand Down

0 comments on commit 773c80f

Please sign in to comment.