Skip to content

Commit

Permalink
fix show variable value bug.
Browse files Browse the repository at this point in the history
unhighlight close menu when the option specified.
  • Loading branch information
EiichiroIto committed Nov 12, 2020
1 parent 4012343 commit 3ef5e22
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
api
stopAll
topBlock applicationDo: [ :app | app stopAllProcesses ]
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
args
^ { self variable }
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
numberArgFlags
^ #(false)
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
selector
^ #getVar:
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ defaultSpec
withConstraints: [ :c | c width: self viewerPaneWidth ];
add:
(SpPanedLayout newHorizontal
position: 40 percent;
add: #editorPane;
add:
(SpBoxLayout newVertical
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ fileMenu
addItem: [ :item |
item
name: 'Close' localized;
action: [ application close ] ];
action: [ application close ];
enabled: [ application class dontClose not ] ];
addItem: [ :item |
item
name: 'Quit' localized;
Expand Down

0 comments on commit 3ef5e22

Please sign in to comment.