diff --git a/gnucash/gnome/report-menus.scm b/gnucash/gnome/report-menus.scm index 7ebbe000ec4..7fb9204179c 100644 --- a/gnucash/gnome/report-menus.scm +++ b/gnucash/gnome/report-menus.scm @@ -116,6 +116,6 @@ (N_ "Dashboard") "ad80271c890b11dfa79f2dcedfd72085" (N_ "A basic dashboard for your accounting data") - (list gnc:menuname-reports gnc:menuname-multicolumn "") + (list gnc:menuname-reports gnc:menuname-multicolumn) (lambda (window) (gnc-main-window-open-report (gnc:make-dashboard) window))))) diff --git a/gnucash/report/reports/standard/dashboard.scm b/gnucash/report/reports/standard/dashboard.scm index 8c1b84ff630..175e6fce4f5 100644 --- a/gnucash/report/reports/standard/dashboard.scm +++ b/gnucash/report/reports/standard/dashboard.scm @@ -43,13 +43,12 @@ (sub-expense-pie (gnc:make-report exp-piechart-guid)) (sub-income-pie (gnc:make-report inc-piechart-guid)) (sub-bar (gnc:make-report inc-exp-chart-guid)) - (options #f)) + (options (gnc:report-options (gnc-report-find view)))) (define (set-option! section name value) (gnc:option-set-value (gnc:lookup-option options section name) value)) - (set! options (gnc:report-options (gnc-report-find view))) (set-option! "General" "Report name" (_ "Dashboard")) (set-option! "General" "Number of columns" 2)