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
@ -45,6 +45,9 @@
|
|||||||
|
|
||||||
* accounts/C/acctchrt_business.gnucash-xea: fix some of the accounts
|
* accounts/C/acctchrt_business.gnucash-xea: fix some of the accounts
|
||||||
in the tree to be more accurate to the real world.
|
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>
|
2003-02-01 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
|
@ -1558,7 +1558,7 @@ gnc_split_register_cursor_is_readonly (VirtualLocation virt_loc,
|
|||||||
if (!txn) return FALSE;
|
if (!txn) return FALSE;
|
||||||
|
|
||||||
type = xaccTransGetTxnType (txn);
|
type = xaccTransGetTxnType (txn);
|
||||||
return (type != TXN_TYPE_NONE);
|
return (type == TXN_TYPE_INVOICE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static CellIOFlags
|
static CellIOFlags
|
||||||
|
Loading…
Reference in New Issue
Block a user