Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions gui-js/apps/minsky-electron/src/app/events/electron.events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,10 @@ ipcMain.on(events.CONTEXT_MENU, async (event, { x, y, type, command}) => {
await ContextMenuManager.initContextMenu(event, x, y, type, command);
});

ipcMain.on(events.CLICK_MENU, async (event, { x, y, type, command}) => {
await ContextMenuManager.initClickMenu(event, x, y, type, command);
});

ipcMain.on(
events.DISPLAY_MOUSE_COORDINATES,
async (event, { mouseX, mouseY }) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export class CommandsManager {
title: `Edit godley title`,
url: `#/headless/edit-godley-title?title=${encodeURIComponent(title) || ''}&itemId=${godleyId}`,
useContentSize: true,
height: 100,
height: 80,
width: 400,
});
}
Expand All @@ -239,7 +239,7 @@ export class CommandsManager {
title: `Edit godley currency`,
url: `#/headless/edit-godley-currency`,
useContentSize: true,
height: 100,
height: 80,
width: 400,
});
}
Expand Down
Loading
Loading