Skip to content

Commit

Permalink
GUI: fix instance access of static member
Browse files Browse the repository at this point in the history
  • Loading branch information
nfi committed Nov 20, 2024
1 parent fcc9c50 commit 619eba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/org/contikios/cooja/GUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public void endDraggingFrame(JComponent f) {
}
});
// Dragging windows on OS X leaves residue from the borders with FlatLaf, so avoid setting dragMode.
if (cooja.configuration.lookAndFeel() != LookAndFeel.FlatLaf) {
if (Cooja.configuration.lookAndFeel() != LookAndFeel.FlatLaf) {
myDesktopPane.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
}
frame = new JFrame(WINDOW_TITLE);
Expand Down

0 comments on commit 619eba0

Please sign in to comment.