mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Merge pull request #88 from processing/fix_mac_os_save
This commit is contained in:
@@ -38,7 +38,7 @@
|
||||
<string>@@sketch@@</string>
|
||||
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.8.5</string>
|
||||
<string>10.10.0</string>
|
||||
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
@@ -61,7 +61,7 @@
|
||||
<array>
|
||||
@@jvm_options_list@@
|
||||
<string>-Xdock:icon=$APP_ROOT/Contents/Resources/sketch.icns</string>
|
||||
<string>-Djava.library.path=$APP_ROOT/Contents/Java</string>
|
||||
<string>-Djava.library.path=$APP_ROOT/Contents/Java</string>
|
||||
<string>-Dapple.laf.useScreenMenuBar=true</string>
|
||||
<string>-Dcom.apple.macos.use-file-dialog-packages=true</string>
|
||||
<string>-Dcom.apple.macos.useScreenMenuBar=true</string>
|
||||
|
||||
@@ -54,6 +54,7 @@
|
||||
<pathelement location="../app/lib/apple.jar" />
|
||||
<pathelement location="../app/lib/jna.jar" />
|
||||
<pathelement location="../app/lib/jna-platform.jar" />
|
||||
<pathelement location="../app/lib/VAqua7.jar" />
|
||||
|
||||
<pathelement location="mode/antlr-4.7.2-complete.jar" />
|
||||
<pathelement location="mode/classpath-explorer-1.0.jar" />
|
||||
|
||||
@@ -610,7 +610,7 @@ public class VariableInspector extends JDialog {
|
||||
@Override
|
||||
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
|
||||
Component c = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
|
||||
setForeground(tree.isEnabled() ? Color.BLACK : Color.GRAY);
|
||||
//setForeground(tree.isEnabled() ? Color.BLACK : Color.GRAY);
|
||||
|
||||
if (value instanceof VariableNode) {
|
||||
VariableNode var = (VariableNode) value;
|
||||
|
||||
Reference in New Issue
Block a user