diff options
author | Johannes Thyssen Tishman <johannes@thyssentishman.com> | 2024-03-26 23:00:50 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-04-02 22:22:33 +0200 |
commit | 3d529aa09330f383298a5735a18549b44bc3098f (patch) | |
tree | a075dbdde8c4ecbfda22dc92ce97949a8d6b69b2 /commands/patch | |
parent | 1ce82f50d0981a9ee047e75d94c7ab496070bd4a (diff) | |
download | aerc-3d529aa09330f383298a5735a18549b44bc3098f.tar.gz |
config: make popover dialogs configurable
Add the [ui].dialog-{position,width,height} options in aerc.conf to set
the position, width and height of popover dialogs such as the one from
:menu, :envelope or :attach -m relative to the main window.
Changelog-added: Add `[ui].dialog-{position,width,height}` to set
the position, width and height of popover dialogs.
Signed-off-by: Johannes Thyssen Tishman <johannes@thyssentishman.com>
Reviewed-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/patch')
-rw-r--r-- | commands/patch/list.go | 2 | ||||
-rw-r--r-- | commands/patch/rebase.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/patch/list.go b/commands/patch/list.go index e73cea3a..0451605b 100644 --- a/commands/patch/list.go +++ b/commands/patch/list.go @@ -88,7 +88,7 @@ func (l List) Execute(args []string) error { ) } - app.AddDialog(app.LargeDialog( + app.AddDialog(app.DefaultDialog( ui.NewBox(viewer, "Patch Management", "", app.SelectedAccountUiConfig(), ), diff --git a/commands/patch/rebase.go b/commands/patch/rebase.go index 45136935..e99cc275 100644 --- a/commands/patch/rebase.go +++ b/commands/patch/rebase.go @@ -117,7 +117,7 @@ func (r Rebase) Execute(args []string) error { return err } - app.AddDialog(app.LargeDialog( + app.AddDialog(app.DefaultDialog( ui.NewBox(viewer, fmt.Sprintf("Patch Rebase on %-6.6s", baseID), "", app.SelectedAccountUiConfig(), ), |