diff --git a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java index 674d86b..9ebaca2 100644 --- a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java +++ b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java @@ -70,7 +70,7 @@ protected void paintComponent(Graphics g) { Square square = model.getSquare(); - g.fillRect((int) square.getX(), (int) square.getY(), (int) square.getWidth(), (int) square.getHeight()); + g.drawRect((int) square.getX(), (int) square.getY(), (int) square.getWidth(), (int) square.getHeight()); } public static void main(String[] args) {