dpi: return 100 by default.

This commit is contained in:
Mathieu Virbel 2012-08-08 19:54:05 +02:00
parent 0cfacbebc5
commit a593515259
1 changed files with 2 additions and 2 deletions

View File

@ -806,9 +806,9 @@ class WindowBase(EventDispatcher):
def get_dpi(self):
'''Return the DPI of the screen. If the implementation doesn't support
any DPI lookup, it will just return 75.
any DPI lookup, it will just return 100.
'''
return 75.
return 100.
def configure_keyboards(self):
# Configure how to provide keyboards (virtual or not)