feat(tui): widen editor modal to max 100 cols
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
parent
54b0299b74
commit
5d9d9ded3f
2 changed files with 32 additions and 1 deletions
|
|
@ -6,3 +6,34 @@ created: 2026-04-25T17:56:14.779844Z
|
||||||
labels:
|
labels:
|
||||||
- test, label, system
|
- test, label, system
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Huzzah! Huzzah! Huzzah! Huzzah! Huzzah! Huzzah! Huzzah! Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
Huzzah!
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1341,7 +1341,7 @@ class TuiCommand extends DewCommand {
|
||||||
required int w,
|
required int w,
|
||||||
required int h,
|
required int h,
|
||||||
}) {
|
}) {
|
||||||
final modalW = min(w - 4, 76);
|
final modalW = min(w - 4, 100);
|
||||||
const headerH = 2; // title bar + blank
|
const headerH = 2; // title bar + blank
|
||||||
const footerH = 2; // blank + hint bar
|
const footerH = 2; // blank + hint bar
|
||||||
const fieldsCount = 6; // title, type, column, labels, milestones, body
|
const fieldsCount = 6; // title, type, column, labels, milestones, body
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue