tallforasmurf / PPQT

A post-processing tool for PGDP written in Python, PyQt4, and Qt
GNU General Public License v3.0
4 stars 2 forks source link

cannot set folio number > 99 #140

Closed bibimbop closed 11 years ago

bibimbop commented 11 years ago

In the tab "pages", column "Folio", I cannot set the folio number to more than 99, whether by typing the number or by using the side arrows.

bibimbop commented 11 years ago

I fixed it by setting the range 0..9999:

    sb = QSpinBox(parent)
    sb.setRange(0, 9999)
tallforasmurf commented 11 years ago

Can't believe I never had reason to try this. But I guess, I've only had to manually set folios for the opening pages (front matter, preface) and then "Update" does the rest.