We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f46c2 commit 0da8a76Copy full SHA for 0da8a76
app/src/processing/mode/java/PresentMode.java
@@ -49,11 +49,6 @@ public class PresentMode {
49
//JMenu preferencesMenu;
50
static JComboBox selector;
51
52
- /**
53
- * Index of the currently selected display to be used for present mode.
54
- */
55
- static GraphicsDevice device;
56
-
57
58
static {
59
GraphicsEnvironment environment =
@@ -75,7 +70,6 @@ public class PresentMode {
75
70
selector.addActionListener(new ActionListener() {
76
71
public void actionPerformed(ActionEvent e) {
77
72
int index = selector.getSelectedIndex();
78
- //device = devices[index];
79
73
Preferences.setInteger("run.present.display", index + 1);
80
74
}
81
});
0 commit comments