We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f00fdcb commit 72d92a2Copy full SHA for 72d92a2
1 file changed
app/src/processing/app/ui/EditorFooter.java
@@ -73,7 +73,7 @@ public class EditorFooter extends Box {
73
Color[] tabColor = new Color[2];
74
75
Color updateColor;
76
- int updateLeft, updateRight;
+ int updateLeft;
77
78
Editor editor;
79
@@ -191,7 +191,7 @@ public void mousePressed(MouseEvent e) {
191
repaint();
192
}
193
194
- if (x > updateLeft) {
+ if (updateCount > 0 && x > updateLeft) {
195
ContributionManager.openUpdates();
196
197
0 commit comments