python - GTK3 small font and entries on win8 -
I have created a GTK3 + Python 3 application and have made it packet with CX_Freeze. When I run it on WinXP, the GTK Entry map is OK, but the font on the win8 and the hegath of GTK entry is small, because you can see it on the screenshot.
I change the gtk CSS style Tried:
.entry {height: 25px; }
but height
property is not supported except font-size
and padding
but no success Tried.
Did you set the Gtk.Entry ()
size directly in the dragon Have tried?
SomeEntry = Gtk.Entry () & lt; Br / & gt; SomeEntry.set_size_request (100, 25)
This width will determine the height of 100 pixels, 25 pixels.
Comments
Post a Comment