mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/business/business-utils/business-prefs.scm: make the
Bill Due Days option selectable based on the setting of Notify Bills Due? git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8390 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
a0cb1bfab2
commit
6aaa06ce38
@ -37,6 +37,10 @@
|
|||||||
(e.g. the check print dialog) and use '%' instead of '~'.
|
(e.g. the check print dialog) and use '%' instead of '~'.
|
||||||
This is an interim fix for #99574, at least until we can
|
This is an interim fix for #99574, at least until we can
|
||||||
centralize the functionality.
|
centralize the functionality.
|
||||||
|
|
||||||
|
* src/business/business-utils/business-prefs.scm: make the
|
||||||
|
Bill Due Days option selectable based on the setting of
|
||||||
|
Notify Bills Due?
|
||||||
|
|
||||||
2003-05-23 Derek Atkins <derek@ihtfp.com>
|
2003-05-23 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
|
@ -59,10 +59,14 @@
|
|||||||
#f))
|
#f))
|
||||||
|
|
||||||
(gnc:register-configuration-option
|
(gnc:register-configuration-option
|
||||||
(gnc:make-simple-boolean-option
|
(gnc:make-complex-boolean-option
|
||||||
gnc:*business-label* (N_ "Notify Bills Due?")
|
gnc:*business-label* (N_ "Notify Bills Due?")
|
||||||
"g" (N_ "Whether to display the list of Bills Due at startup.")
|
"g" (N_ "Whether to display the list of Bills Due at startup.")
|
||||||
#t))
|
#t #f
|
||||||
|
(lambda (x) (gnc:set-option-selectable-by-name gnc:*business-label*
|
||||||
|
"Bills Due Days"
|
||||||
|
x))
|
||||||
|
))
|
||||||
|
|
||||||
(gnc:register-configuration-option
|
(gnc:register-configuration-option
|
||||||
(gnc:make-number-range-option
|
(gnc:make-number-range-option
|
||||||
|
Loading…
Reference in New Issue
Block a user