mirror of https://github.com/kivy/kivy.git
dpi: return 100 by default.
This commit is contained in:
parent
0cfacbebc5
commit
a593515259
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue