mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fixed Kivy help button and updated Kivy toolbar.
This commit is contained in:
parent
5f3d08cb8a
commit
53ac444792
3 changed files with 6 additions and 5 deletions
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -595,7 +595,7 @@ class Application:
|
|||
style = self.opt.toolbar_style
|
||||
if TOOLKIT == 'kivy':
|
||||
size = 'xlarge'
|
||||
style = 'bluecurve'
|
||||
style = 'remix light'
|
||||
d = self._getImagesDir('toolbar', style, size)
|
||||
if d:
|
||||
return d
|
||||
|
|
|
@ -145,10 +145,11 @@ def help_html(app, document, dir_, top=None):
|
|||
|
||||
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))
|
||||
if TOOLKIT == "tk":
|
||||
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)
|
||||
|
|
Loading…
Add table
Reference in a new issue