Fixes for mac integration

This commit is contained in:
crschnick 2023-02-03 13:05:12 +00:00
parent f35e25ae57
commit 8535276166

View file

@ -73,14 +73,14 @@ public abstract class ExternalEditorType implements PrefsChoiceValue {
public static final ExternalEditorType TEXT_EDIT = new MacOsFullPathType("app.textEdit") {
@Override
protected Path determinePath() {
return Path.of("/Applications/TextEdit.app");
return Path.of("/System/Applications/TextEdit.app");
}
};
public static final ExternalEditorType NOTEPADPP_MACOS = new MacOsFullPathType("app.notepad++") {
@Override
protected Path determinePath() {
return Path.of("/Applications/TextEdit.app");
return Path.of("/Applications/Notepad++.app");
}
};