Hey Tired.
Sadly KOReader isn't tested on non-touch devices. I can reproduce your issue on the emulator with
Code:
export DISABLE_TOUCH=1
When onderocks added support for non-touch devices *almost* everything worked, but further changes weren't tested. Patches are welcome.
KOReader works based on modularity, so some settings only apply to a subset of documents. If you want to make changes to all documents you can edit settings.reader.lua
To modify Left/Right page margins to 20 add
Code:
["copt_h_page_margins"] = {
[1] = 20,
[2] = 20
},
In the same vein you can use
Code:
["copt_t_page_margin"] = 20
and
Code:
["copt_b_page_margin"] = 20
to set top and bottom margin too. I hope it helps until somebody fixes these kind of quirks on non touch devices