From 0d7bb5990e51476baca8a9ee2ba8e700f574b3c6 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Sun, 24 Sep 2017 16:18:57 -0700 Subject: [PATCH] Try fixing anchors --- desk.acc/a2d.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/desk.acc/a2d.md b/desk.acc/a2d.md index 340102c..b0a37dd 100644 --- a/desk.acc/a2d.md +++ b/desk.acc/a2d.md @@ -64,7 +64,7 @@ optional _resize box_ and optional _scroll bars_. > client area is entirely offscreen then various operations should be skipped because > the window's box coordinates will not be set correctly. -#### Input Loop {#input-loop} +#### {#input-loop} Input Loop * Call A2D_GET_INPUT. * If a key (A2D_INPUT_KEY), then check modifiers (Open/Closed Apple) and key code, ignore or take action. @@ -79,7 +79,7 @@ optional _resize box_ and optional _scroll bars_. * If part is a scrollbar (A2D_VSCROLL or A2D_HSCROLL) then initiate a [scroll](#scroll). * Handle a client click using custom logic. -#### Window Drag {#drag} +#### {#drag} Window Drag * Call A2D_DRAG_WINDOW. * Call JUMP_TABLE_REDRAW_ALL. @@ -88,7 +88,7 @@ optional _resize box_ and optional _scroll bars_. * If _offscreen flag_ is not set, redraw window. -#### Window Resize {#resize} +#### {#resize} Window Resize * Call A2D_DRAG_RESIZE. * Call JUMP_TABLE_REDRAW_ALL. @@ -96,7 +96,7 @@ optional _resize box_ and optional _scroll bars_. * Call A2D_RESIZE_WINDOW if needed to adjust scroll bar settings. (Details TBD). * Redraw window. -#### Window Scroll {#scroll} +#### {#scroll} Window Scroll ### Drawing Operations