From a5935152592b9bdaf200cabd0a0066872599b060 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Wed, 8 Aug 2012 19:54:05 +0200 Subject: [PATCH] dpi: return 100 by default. --- kivy/core/window/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy/core/window/__init__.py b/kivy/core/window/__init__.py index 39f8731da..73d355f05 100755 --- a/kivy/core/window/__init__.py +++ b/kivy/core/window/__init__.py @@ -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)