Try fixing anchors

This commit is contained in:
Joshua Bell 2017-09-24 16:18:57 -07:00 committed by GitHub
parent bd667a7291
commit 0d7bb5990e

View File

@ -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