kevinhendricks / Access-Aide

A Sigil edit plugin to help ebook developers improve Accessibility of their epubs
GNU Lesser General Public License v2.1
20 stars 5 forks source link

Code for ensuring the GUI fits the screen seems gone? #1

Closed KimNJensen closed 5 years ago

KimNJensen commented 5 years ago

These lines in Accessgui.py seems to have disappeared in the latest version(s) (so the okay/cancel get out of reach):

after line 44: // make sure our frame actually fits on the users screen framewidth = basewidth2 frameheight = basewidth2 if framewidth > w: framewidth = w if frameheight > h: frameheight = h framesize = (framewidth, frameheight)

kevinhendricks commented 5 years ago

Just checked, and those lines still exist in github master. Perhaps the issue is that the prebuilt plugin has older source for some reason? If so I will fix that and create a new prebuilt release as it should match what is in master exactly?

Thanks for the head's up.

kevinhendricks commented 5 years ago

Just created v043 to fix this.
Thank you for your bug report.