Skip to content

Commit

Permalink
Make Sys.getClipboard() static. (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
gravit0 authored Jul 27, 2024
1 parent d1fe9ff commit c96a1f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/lwjglx/Sys.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public static boolean is64Bit() {
.endsWith("64");
}

public String getClipboard() {
public static String getClipboard() {
return GLFW.glfwGetClipboardString(Display.getWindow());
}
}

0 comments on commit c96a1f1

Please sign in to comment.