From 349e1967641a41ee0ea5c4e9f33576fac6a42f53 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 15 Jun 2015 08:38:16 -0400 Subject: [PATCH] re-enable prefs display list after adding window and other notes --- app/src/processing/app/PreferencesFrame.java | 6 +++--- core/todo.txt | 3 +++ todo.txt | 6 ++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/app/src/processing/app/PreferencesFrame.java b/app/src/processing/app/PreferencesFrame.java index 75d7ec1c4..1c3c42f65 100644 --- a/app/src/processing/app/PreferencesFrame.java +++ b/app/src/processing/app/PreferencesFrame.java @@ -780,9 +780,9 @@ public class PreferencesFrame { displaySelectionBox.setModel(new DefaultComboBoxModel(items)); // Disable it if you can't actually change the default display - if (displayCount == 1) { - displaySelectionBox.setEnabled(false); - } + displaySelectionBox.setEnabled(displayCount != 1); + + // Send back the number (1-indexed) of the default display return defaultNum; } } diff --git a/core/todo.txt b/core/todo.txt index 4ea8addf8..6b3e5723a 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -1,4 +1,5 @@ 0238 (3.0b1) +X add note about headless exceptions that points to Github retina fixes X make g.pixelDensity public inside PApplet (so accessible by sketches) @@ -63,6 +64,8 @@ _ sketch not always showing with empty draw() _ https://github.com/processing/processing/issues/3363 _ PGraphic ignores PNG transparency (regression from 3.0a5) _ https://github.com/processing/processing/issues/3317 +_ clear() seems to be broken (maybe related to 3317) +_ https://github.com/processing/processing/issues/3378 _ sketch window briefly appears on top left corner when using OpenGL _ https://github.com/processing/processing/issues/3308 _ sketch window is not placed at correct location when running a second time diff --git a/todo.txt b/todo.txt index 78b22aa0d..b252e9923 100644 --- a/todo.txt +++ b/todo.txt @@ -1,4 +1,6 @@ 0238 (3.0b1) +X Re-enable the display menu in Preferences after display added +X Previously, the checkbox menu stayed disabled (though it updated the list) gsoc X Mode problems window wasn't doing line breaks @@ -55,6 +57,10 @@ _ otherwise could run in one mode, then try to stop in another pde/build +_ weird drag and drop exceptions in 3.x +_ https://github.com/processing/processing/issues/3383 +_ need to show error message instead of exceptions when loading Android Mode +_ https://github.com/processing/processing/issues/3386 _ when variables used in size(), getting exceptions instead of any warning _ https://github.com/processing/processing/issues/3311 _ crashed on startup w/ JavaScript mode as default b/c PdeKeyListener not found