Compare commits

..

No commits in common. "4ac61db781eef59f5752825ea328cdd07ffcd1d5" and "d58d02092a361df0b83ccb9a3382a6d2b32158de" have entirely different histories.

3 changed files with 3 additions and 8 deletions

View file

@ -2,11 +2,6 @@
CHANGES
=======
0.5 (2021-10-11)
----------------
- support for HiDPI displays
0.4 (2021-03-04)
----------------

View file

@ -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)

View file

@ -1,6 +1,6 @@
from setuptools import setup
VERSION = "0.5"
VERSION = "0.4"
setup(
name="plakativ",