Skip to content

Commit

Permalink
Added Variable browser to the insert menu. For Ravel #563.
Browse files Browse the repository at this point in the history
  • Loading branch information
highperformancecoder committed May 14, 2024
1 parent a871fd8 commit 85a1162
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,19 @@ export class ApplicationMenuManager {
label: 'Insert',
id: 'insert',
submenu: [
{
label: 'Variable Browser',
click() {
WindowManager.createPopupWindowWithRouting({
title: 'Variables',
url: "#/headless/variable-pane",
width: 400,
height: 450,
alwaysOnTop: true,
modal: false,
});
},
},
{
label: 'plot',
async click() {minsky.canvas.addPlot();}
Expand Down

0 comments on commit 85a1162

Please sign in to comment.