This commit is contained in:
crschnick
2024-05-03 16:17:57 +00:00
parent 2d367aadb9
commit 650398b541
6 changed files with 16 additions and 10 deletions
@@ -37,7 +37,8 @@ public class EditFileAction implements LeafAction {
@Override
public ObservableValue<String> getName(OpenFileSystemModel model, List<BrowserEntry> entries) {
var e = AppPrefs.get().externalEditor().getValue();
return AppI18n.observable("editWithEditor", e != null ? e.toTranslatedString().getValue() : "?");
return AppI18n.observable(
"editWithEditor", e != null ? e.toTranslatedString().getValue() : "?");
}
@Override