Quote:
Originally Posted by BetterRed
. . .
And, I haven't done any testing with starting CS from a command line or batch file, I'll try that later today.
|
I tested running CS under calibre-debug. As I anticipated when Ctrl+L is pressed in CS running under calibre-debug the calibre process does any necessary library switch, and then executes the command (show-book, search, etc) but CS doesn't disappear - because it's a child of the calibre-debug process.
I can 'work around/live with' the issue by starting CS in a trivial batch file using the JS Select & Open Arbitrary Programs and Files tool e.g. a
start_cs_Authors.bat file:
Code:
@echo on
START calibre-debug -r "CalibreSpy" -- --"D:\Calibre\Libraries\Authors" --reset
pause
BR