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: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Ensure that you match the Terminal.Gui library version you reference to the desi

## Demo

![long-demo](https://github.com/gui-cs/TerminalGuiDesigner/assets/31306100/5df9f545-8c61-4655-bc0c-1e75d1c149d9)
![long-demo](https://github.com/tui-cs/TerminalGuiDesigner/assets/31306100/5df9f545-8c61-4655-bc0c-1e75d1c149d9)

### Building
----------------
Expand Down Expand Up @@ -204,7 +204,7 @@ italics are experimental and require passing the `-e` flag when starting applica
- [ ] Copy/Paste preserve menu entries
- [x] ProgressBar
- [x] OptionSelector
- [ ] [SplitContainer](https://github.com/gui-cs/Terminal.Gui/pull/2258) (Unreleased)
- [ ] [SplitContainer](https://github.com/tui-cs/Terminal.Gui/pull/2258) (Unreleased)
- [ ] Copy/Paste preserve split content panels
- [x] StatusBar
- [ ] Copy/Paste preserve menu entries
Expand Down
2 changes: 1 addition & 1 deletion Showcase/Text.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/UI/Editor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ private void CreateAndShowContextMenu(Mouse? m, Design? rightClicked)
if (hasPropsItems)
{
// Also add to the submenu an 'All' version
// Workaround for https://github.com/gui-cs/Terminal.Gui/issues/4876
// Workaround for https://github.com/tui-cs/Terminal.Gui/issues/4876
// Previously user could do it by selecting the root 'Properties' expandable
// menu
setPropsItems.Insert(0, new MenuItem() {
Expand All @@ -993,7 +993,7 @@ private void CreateAndShowContextMenu(Mouse? m, Design? rightClicked)
Title = name,
SubMenu = new Menu(setPropsItems)
/*
* No longer supported, see https://github.com/gui-cs/Terminal.Gui/issues/4876
* No longer supported, see https://github.com/tui-cs/Terminal.Gui/issues/4876
* ,Action = () =>
{
if (selected.Length == 1 || rightClicked != null)
Expand Down
2 changes: 1 addition & 1 deletion src/ViewExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public static void SetActualText(this View view, string text)
/// keyword on this property.
/// </para>
/// <para>
/// See https://github.com/gui-cs/Terminal.Gui/issues/1619 for more info.
/// See https://github.com/tui-cs/Terminal.Gui/issues/1619 for more info.
/// </para>
/// </summary>
/// <param name="view">The <see cref="View"/> whose text you want.</param>
Expand Down
2 changes: 1 addition & 1 deletion src/ViewFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static class ViewFactory
typeof( Wizard ),
typeof( WizardStep ),

// This is unstable when added directly as a view see https://github.com/gui-cs/Terminal.Gui/issues/3664
// This is unstable when added directly as a view see https://github.com/tui-cs/Terminal.Gui/issues/3664
typeof(Shortcut),

typeof(CharMap),
Expand Down
4 changes: 2 additions & 2 deletions tests/MenuBarTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -547,9 +547,9 @@ public void TestMenuOperations( )
Assume.That( OperationManager.Instance.UndoStackSize, Is.Zero );
Assume.That( OperationManager.Instance.RedoStackSize, Is.Zero );

Assert.Warn( "MenuTracker.Instance.CurrentlyOpenMenuItem cannot be guaranteed null at this time. See https://github.com/gui-cs/TerminalGuiDesigner/issues/270" );
Assert.Warn( "MenuTracker.Instance.CurrentlyOpenMenuItem cannot be guaranteed null at this time. See https://github.com/tui-cs/TerminalGuiDesigner/issues/270" );
// TODO: Enable this pre-condition once MenuTracker changes are implemented.
// See https://github.com/gui-cs/TerminalGuiDesigner/issues/270
// See https://github.com/tui-cs/TerminalGuiDesigner/issues/270
//Assume.That( MenuTracker.Instance.CurrentlyOpenMenuItem, Is.Null );

MenuTracker.Instance.Register( mbOut );
Expand Down
Loading