diff --git a/src/i18n/en-GB.js b/src/i18n/en-GB.js index 26d420de..49d9bd98 100644 --- a/src/i18n/en-GB.js +++ b/src/i18n/en-GB.js @@ -354,7 +354,6 @@ module.exports = { "VERIFY.VERIFIED":"Verified", "VERIFY.UNVERIFIED":"Unverified", "LAUNCHER.CUSTOM":"Custom Apps", - "LAUNCHER.RECOMMENDED":"Recommended Apps", "LAUNCHER.UPDATE":"Check for Updates", "LAUNCHER.NONE":"No Custom Apps currently installed. Create an App from the 'create app' menu item of the green plus.", "LAUNCHER.SHORTCUTS":"Shortcuts", diff --git a/src/i18n/zh-CN.js b/src/i18n/zh-CN.js index db818568..cd8d9e18 100644 --- a/src/i18n/zh-CN.js +++ b/src/i18n/zh-CN.js @@ -337,7 +337,6 @@ module.exports = { "VERIFY.VERIFIED":"已验证", "VERIFY.UNVERIFIED":"未验证", "LAUNCHER.CUSTOM":"定制应用程序", - "LAUNCHER.RECOMMENDED":"推荐的应用程序", "LAUNCHER.UPDATE":"检查更新", "LAUNCHER.NONE":"当前没有安装自定义应用程序。从绿色加号的“创建应用程序”菜单项创建应用程序。", "LAUNCHER.SHORTCUTS":"快捷方式", diff --git a/src/views/Drive.vue b/src/views/Drive.vue index 3570334b..0d9c024c 100644 --- a/src/views/Drive.vue +++ b/src/views/Drive.vue @@ -2735,7 +2735,7 @@ module.exports = { let userApps = this.availableAppsForFile(file); var args = {filename:filename} this.appArgs = args; - if (userApps.length == 1) { + if (userApps.length == 1 && app != "editor") { this.openFileOrDir(userApps[0].name, this.getPath, args, writable); } else { if (recommendedApp != null) { diff --git a/src/views/Launcher.vue b/src/views/Launcher.vue index ea6e5a6b..eb289c38 100644 --- a/src/views/Launcher.vue +++ b/src/views/Launcher.vue @@ -78,8 +78,11 @@