Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit f86a6fd

Browse files
committed
[Bug 21174] Ensure "Sample Stacks" do show up in menu "Windows"
1 parent a649114 commit f86a6fd

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Toolset/libraries/revidelibrary.8.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9816,7 +9816,7 @@ User stacks, script editors, the dictionary and resource center are considered w
98169816
from the point of view of the menubar
98179817
*/
98189818
function revIDEStackIsWindow pStackName
9819-
if pStackName begins with revIDEScriptEditorPrefix() or pStackName is "revDictionary" or pStackName is "revResourceCenter" then
9819+
if pStackName begins with revIDEScriptEditorPrefix() or pStackName is "revDictionary" or pStackName is "revResourceCenter" or pStackName is "revOnline" then
98209820
return true
98219821
end if
98229822

Toolset/palettes/menubar/revmenubar.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ private on setupWindowMenu
173173
repeat for each line tStack in tWindows
174174
if there is not a stack tStack then next repeat
175175
put the short name of tStack into tStackName
176-
if tStackName begins with "revNewScriptEditor" or tStackName is "revDictionary" or tStackName is "revResourceCenter" then
176+
if tStackName begins with "revNewScriptEditor" or tStackName is "revDictionary" or tStackName is "revResourceCenter" or tStackName is "revOnline" then
177177
put the title of tStack into tStackName
178178
end if
179179

notes/bugfix-21174.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Ensure "Sample Stacks" do show up in menu "Windows"

0 commit comments

Comments
 (0)