From 42b6fc1b6dfd5dd1a9961ae4be89fc5a94c380c8 Mon Sep 17 00:00:00 2001 From: dlarocque Date: Thu, 20 May 2021 23:09:51 -0500 Subject: [PATCH] Increased display width to fix #36 --- src/com/example/algorithmvisualizer/ContentWindow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/example/algorithmvisualizer/ContentWindow.java b/src/com/example/algorithmvisualizer/ContentWindow.java index a377393..ee955ea 100644 --- a/src/com/example/algorithmvisualizer/ContentWindow.java +++ b/src/com/example/algorithmvisualizer/ContentWindow.java @@ -53,7 +53,7 @@ public void initComponents() { sizeOptions = new String[] { "10", "50", "100", "250", "500" }; } else { // Original dimensions (1080p) arrDisplayHeight = 900; - contentWidth = arrDisplayHeight + 20; + contentWidth = arrDisplayHeight + 100; sizeOptions = new String[] { "10", "50", "100", "300", "450", "900" }; }