Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix RPI touchscreen not working with KIVY_BCM_DISPMANX_ID=4 #3642

Merged
merged 1 commit into from Sep 19, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion kivy/lib/vidcore_lite/egl.pyx
Expand Up @@ -603,7 +603,7 @@ def bcm_display_open(bcm.uint32_t device):
cdef:
bcm.DISPMANX_DISPLAY_HANDLE_T disp
bcm.DisplayHandle D
disp = bcm.vc_dispmanx_display_open( 0 )
disp = bcm.vc_dispmanx_display_open( device )
if disp == 0:
raise bcm.BCMDisplayException("Couldn't open handle to display")
D = bcm.DisplayHandle()
Expand Down