« get me outta code hell

ListScrollForm - fixLayout before checking dimensions - tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/ui/form/ListScrollForm.js
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2018-07-05 09:26:49 -0300
committerFlorrie <towerofnix@gmail.com>2018-07-05 09:26:49 -0300
commitde1c92141d2d4859cf869ec90e50e8eb0e5e8568 (patch)
tree9f596a76167fbdc8bc4b6b5945b39f209dd1974d /ui/form/ListScrollForm.js
parenteebff4fbbac489f96954f05d6d0d838c62a8e6c7 (diff)
ListScrollForm - fixLayout before checking dimensions
Diffstat (limited to 'ui/form/ListScrollForm.js')
-rw-r--r--ui/form/ListScrollForm.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/form/ListScrollForm.js b/ui/form/ListScrollForm.js
index e888fd1..714fc6f 100644
--- a/ui/form/ListScrollForm.js
+++ b/ui/form/ListScrollForm.js
@@ -40,6 +40,8 @@ module.exports = class ListScrollForm extends Form {
     let nextPos = 0
 
     for (const item of itemsPastScroll) {
+      item.fixLayout()
+
       item[this.posProp] = nextPos
       nextPos += item[this.sizeProp]