mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/register/ledger-core/split-register-module.c: only set ReadOnly
status for Invoices, not Payments. Fixes #105032 git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7915 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
fd7b3ae56e
commit
ef64db1406
@ -46,6 +46,9 @@
|
||||
* accounts/C/acctchrt_business.gnucash-xea: fix some of the accounts
|
||||
in the tree to be more accurate to the real world.
|
||||
|
||||
* src/register/ledger-core/split-register-module.c: only set ReadOnly
|
||||
status for Invoices, not Payments. Fixes #105032
|
||||
|
||||
2003-02-01 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* src/gnome/window-register.c: fix the query code to use the correct
|
||||
|
@ -1558,7 +1558,7 @@ gnc_split_register_cursor_is_readonly (VirtualLocation virt_loc,
|
||||
if (!txn) return FALSE;
|
||||
|
||||
type = xaccTransGetTxnType (txn);
|
||||
return (type != TXN_TYPE_NONE);
|
||||
return (type == TXN_TYPE_INVOICE);
|
||||
}
|
||||
|
||||
static CellIOFlags
|
||||
|
Loading…
Reference in New Issue
Block a user