Browse Source

Doc updates

Tig 1 year ago
parent
commit
f70e8ded40
2 changed files with 15 additions and 11 deletions
  1. 1 1
      Terminal.Gui/Views/Shortcut.cs
  2. 14 10
      docfx/docs/toc.yml

+ 1 - 1
Terminal.Gui/Views/Shortcut.cs

@@ -74,7 +74,7 @@ public class Shortcut : View, IOrientation, IDesignable
         CommandView = new ()
         {
             Width = Dim.Auto (),
-            Height = Dim.Auto (1)
+            Height = Dim.Auto (DimAutoStyle.Auto, minimumContentDim: 1)
         };
 
         HelpView.Id = "_helpView";

+ 14 - 10
docfx/docs/toc.yml

@@ -4,24 +4,28 @@
   href: getting-started.md
 - name: What's new in v2
   href: newinv2.md
-- name: v1 To v2 Migration Guide
+- name: v1 To v2 Migration
   href: migratingfromv1.md  
 - name: List of Views
   href: views.md
+- name: Layout Engine
+  href: layout.md
+- name: Navigation
+  href: navigation.md
+- name: Keyboard
+  href: keyboard.md
+- name: Mouse
+  href: mouse.md
 - name: Configuration
   href: config.md
-- name: Drawing (Text, Lines, and Color)
+- name: Drawing
   href: drawing.md
-- name: Cross-platform Driver Model
+- name: Drivers
   href: drivers.md
-- name: Keyboard Event Processing
-  href: keyboard.md
-- name: Mouse Event Processing
-  href: mouse.md
-- name: The View Layout Engine
-  href: layout.md
-- name: Mutli-Tasking and Application Main Loop
+- name: Multi-Tasking
   href: mainloop.md
+- name: Dim.Auto Deep Dive
+  href: dimauto.md
 - name: TableView Deep Dive
   href: tableview.md
 - name: TreeView Deep Dive