diff --git a/src/main/utils/picgoCoreIPC.js b/src/main/utils/picgoCoreIPC.js index a0d16c94..c5c1aaf9 100644 --- a/src/main/utils/picgoCoreIPC.js +++ b/src/main/utils/picgoCoreIPC.js @@ -143,7 +143,7 @@ const handlePluginActions = (ipcMain, CONFIG_PATH) => { const picgo = new PicGo(CONFIG_PATH) const plugin = picgo.pluginLoader.getPlugin(`picgo-plugin-${name}`) const guiApi = new GuiApi(ipcMain, event.sender, picgo) - if (plugin.guiMenu && plugin.guiMenu.length > 0) { + if (plugin.guiMenu && plugin.guiMenu(picgo).length > 0) { const menu = plugin.guiMenu(picgo) menu.forEach(item => { if (item.label === label) { diff --git a/src/renderer/pages/MiniPage.vue b/src/renderer/pages/MiniPage.vue index 4870354f..5f0d645e 100644 --- a/src/renderer/pages/MiniPage.vue +++ b/src/renderer/pages/MiniPage.vue @@ -22,7 +22,7 @@ export default { mixins: [mixin], data () { return { - logo: 'static/logo.png', + logo: 'static/squareLogo.png', dragover: false, progress: 0, showProgress: false, diff --git a/src/renderer/pages/Plugin.vue b/src/renderer/pages/Plugin.vue index be385f01..fff8866d 100644 --- a/src/renderer/pages/Plugin.vue +++ b/src/renderer/pages/Plugin.vue @@ -17,7 +17,7 @@