diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-27 11:56:24 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-27 11:56:24 +0200 |
| commit | aa7b5ef6ab4f45d2e8e0caa7942db31fc60b3861 (patch) | |
| tree | fd8268cb72ec6c26ed779127200ae0afb714d0f0 /src/ui/ui_invoices.cpp | |
| parent | 94636b871f0272b518dbb38ce0eb75f9e18bea8b (diff) | |
document selector for invoice
Diffstat (limited to 'src/ui/ui_invoices.cpp')
| -rw-r--r-- | src/ui/ui_invoices.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui/ui_invoices.cpp b/src/ui/ui_invoices.cpp index 0ef3fb2..fdeafc6 100644 --- a/src/ui/ui_invoices.cpp +++ b/src/ui/ui_invoices.cpp @@ -206,6 +206,12 @@ static void draw_invoice_form(invoice* buffer, bool viewing_only = false) ImGui::Separator(); + if (ImGui::FormFileSelector(buffer->document.original_path)) { + buffer->document.copy_path[0] = 0; + } + + ImGui::Separator(); + ImGui::Text(localize("invoice.form.billinginformation")); draw_contact_form_ex(&buffer->customer, false, true); |
