mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Scaled help window to the screen.
This commit is contained in:
parent
a05044e40e
commit
5af91ccdd7
1 changed files with 11 additions and 6 deletions
|
@ -139,12 +139,17 @@ def help_html(app, document, dir_, top=None):
|
|||
except Exception:
|
||||
# traceback.print_exc()
|
||||
top = make_help_toplevel(app, title=_("%s Help") % TITLE)
|
||||
if top.winfo_screenwidth() < 800 or top.winfo_screenheight() < 600:
|
||||
# maximized = 1
|
||||
top.wm_minsize(300, 150)
|
||||
else:
|
||||
# maximized = 0
|
||||
top.wm_minsize(400, 200)
|
||||
|
||||
sw = top.winfo_screenwidth()
|
||||
sh = top.winfo_screenheight()
|
||||
|
||||
h = int(sh * .8)
|
||||
w = min(650, int(sw * .8))
|
||||
|
||||
th = int(top.winfo_rooty() - top.winfo_y())
|
||||
top.wm_minsize(w, min(200, h))
|
||||
top.geometry("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
|
||||
|
||||
viewer = HTMLViewer(top, app, help_html_index)
|
||||
viewer.display(doc)
|
||||
# wm_map(top, maximized=maximized)
|
||||
|
|
Loading…
Add table
Reference in a new issue