Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 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: 2 additions & 2 deletions Terminal.Gui/Core/ContextMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ public void Show ()
} else if (ForceMinimumPosToZero && position.Y < 0) {
position.Y = 0;
}

menuBar = new MenuBar (new [] { MenuItems }) {
X = position.X,
Y = position.Y,
Width = 0,
Height = 0,
UseSubMenusSingleFrame = UseSubMenusSingleFrame
UseSubMenusSingleFrame = this.UseSubMenusSingleFrame
Comment thread
tig marked this conversation as resolved.
Outdated
};

menuBar.isContextMenuLoading = true;
Expand Down
Loading