Compare commits
No commits in common. "4ac61db781eef59f5752825ea328cdd07ffcd1d5" and "d58d02092a361df0b83ccb9a3382a6d2b32158de" have entirely different histories.
4ac61db781
...
d58d02092a
3 changed files with 3 additions and 8 deletions
|
@ -2,11 +2,6 @@
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
0.5 (2021-10-11)
|
||||
----------------
|
||||
|
||||
- support for HiDPI displays
|
||||
|
||||
0.4 (2021-03-04)
|
||||
----------------
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ except ImportError:
|
|||
tkinter.Menubutton = dummy
|
||||
tkinter.LabelFrame = dummy
|
||||
|
||||
VERSION = "0.5"
|
||||
VERSION = "0.4"
|
||||
|
||||
PAGE_SIZES = OrderedDict(
|
||||
[
|
||||
|
@ -879,7 +879,7 @@ class VerticalScrolledFrame(tkinter.Frame):
|
|||
borderwidth=0,
|
||||
highlightthickness=0,
|
||||
yscrollcommand=vscrollbar.set,
|
||||
width=240 * parent.winfo_fpixels("1i") / 96.0,
|
||||
width=240*parent.winfo_fpixels('1i')/96.0,
|
||||
)
|
||||
canvas.pack(side=tkinter.LEFT, fill=tkinter.BOTH, expand=tkinter.TRUE)
|
||||
vscrollbar.config(command=canvas.yview)
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
|||
from setuptools import setup
|
||||
|
||||
VERSION = "0.5"
|
||||
VERSION = "0.4"
|
||||
|
||||
setup(
|
||||
name="plakativ",
|
||||
|
|
Loading…
Reference in a new issue