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
|
style = self.opt.toolbar_style
|
||||||
if TOOLKIT == 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
size = 'xlarge'
|
size = 'xlarge'
|
||||||
style = 'bluecurve'
|
style = 'remix light'
|
||||||
d = self._getImagesDir('toolbar', style, size)
|
d = self._getImagesDir('toolbar', style, size)
|
||||||
if d:
|
if d:
|
||||||
return d
|
return d
|
||||||
|
|
|
@ -145,10 +145,11 @@ def help_html(app, document, dir_, top=None):
|
||||||
|
|
||||||
h = int(sh * .8)
|
h = int(sh * .8)
|
||||||
w = min(650, int(sw * .8))
|
w = min(650, int(sw * .8))
|
||||||
|
if TOOLKIT == "tk":
|
||||||
th = int(top.winfo_rooty() - top.winfo_y())
|
th = int(top.winfo_rooty() - top.winfo_y())
|
||||||
top.wm_minsize(w, min(200, h))
|
top.wm_minsize(w, min(200, h))
|
||||||
top.geometry("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
|
top.geometry("%dx%d+%d+%d" % (w, h, (sw - w) / 2,
|
||||||
|
((sh - h) / 2) - th))
|
||||||
|
|
||||||
viewer = HTMLViewer(top, app, help_html_index)
|
viewer = HTMLViewer(top, app, help_html_index)
|
||||||
viewer.display(doc)
|
viewer.display(doc)
|
||||||
|
|
Loading…
Add table
Reference in a new issue