From fe243801a4e5642e2a75e3bc4dfee472bf799402 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Sat, 29 Oct 2011 17:47:17 -0400 Subject: [PATCH] Fixing "auto-associate" preference text (.pde -> .ino). http://code.google.com/p/arduino/issues/detail?id=699 --- app/src/processing/app/Preferences.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 4cee5ad8e..f98fc9df6 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -340,7 +340,7 @@ public class Preferences { if (Base.isWindows()) { autoAssociateBox = - new JCheckBox("Automatically associate .pde files with Arduino"); + new JCheckBox("Automatically associate .ino files with Arduino"); pain.add(autoAssociateBox); d = autoAssociateBox.getPreferredSize(); autoAssociateBox.setBounds(left, top, d.width + 10, d.height);