> On 18 Jan 2021, at 16:32, Chris Graves <[email protected]> wrote: > > If you open the plist file with Xcode or bbedit or ... you may see that the > maxfiles key is of type string, instead of integer. It may look like: > <key>/org/gnucash/history/maxfiles</key> > <string>6</string> > > Instead of > <key>/org/gnucash/history/maxfiles</key> > <integer>6</integer> > > You can manually change string to integer or do this: > defaults delete -app Gnucash "/org/gnucash/history/maxfiles" > defaults write -app Gnucash "/org/gnucash/history/maxfiles" -int 6
Problem solved, thank you! I opened the plist file with Xcode, and changed the Type of /org/gnucash/history/maxfiles from String to Number, but those without Xcode could no doubt use the command lines you have given. Regards, Michael _______________________________________________ gnucash-user mailing list [email protected] To update your subscription preferences or to unsubscribe: https://lists.gnucash.org/mailman/listinfo/gnucash-user If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. ----- Please remember to CC this list on all your replies. You can do this by using Reply-To-List or Reply-All.
