From 359d9d107ed45be9a170e3ecf23f5c39d2eb0588 Mon Sep 17 00:00:00 2001 From: Florrie Date: Sat, 2 May 2020 10:11:28 -0300 Subject: comment out pane for text editor this was causing a funky visual bug which made the queue pane look like its bottom-right corner was pointing downwards (like the top-right corner of a pane is)! --- ui.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui.js b/ui.js index 021776f..5c586dd 100644 --- a/ui.js +++ b/ui.js @@ -221,10 +221,10 @@ class AppElement extends FocusElement { this.queuePane = new Pane() this.addChild(this.queuePane) + /* this.textInfoPane = new Pane() this.addChild(this.textInfoPane) - /* this.textEditor = new NotesTextEditor() this.textInfoPane.addChild(this.textEditor) this.textInfoPane.visible = false @@ -1235,18 +1235,22 @@ class AppElement extends FocusElement { this.tabberPane.w = leftWidth this.tabberPane.y = bottomY this.tabberPane.h = topY - this.tabberPane.y + /* if (this.textInfoPane.visible) { this.tabberPane.h -= this.textInfoPane.h this.textInfoPane.y = this.tabberPane.bottom } + */ this.queuePane.x = this.tabberPane.right this.queuePane.w = this.contentW - this.tabberPane.right } else { this.queuePane.x = 0 this.queuePane.w = this.contentW + /* if (this.textInfoPane.visible) { this.textInfoPane.y = bottomY } + */ } this.queuePane.y = bottomY -- cgit 1.3.0-6-gf8a5