eyeoftime wrote: 
> Has anyone had any success with getting JiveLite to work with the
> ADAFruit Capacitive PiTFT? it doesn't seem to matter what I do, I just
> cannot get it to work. I can fairly easily get the interface to show up
> on the PiTFT screen and have made good use of the LCDScreen theme applet
> posted further back in this thread, however the touch aspect just
> doesn't work. The mouse pointer can only be moved around the top left
> hand corner of the screen, no matter where you touch. I'm pretty sure
> this is an SDL issue, perhaps something to do with video resolutions,
> but my knowledge of SDL is rather limited to say the least. My guess is
> that a starting point would be to reset the SDL video mode upon load of
> a theme, maybe this is already done, but I'm at a loose end at the
> moment.
> 
> eyeoftime

SDL mouse is disabled by default.
I had a similar issue trying to get libvga working until I commented out
this line.


Code:
--------------------
    Index: src/jive_framework.c
  ===================================================================
  --- src/jive_framework.c.orig
  +++ src/jive_framework.c
  @@ -191,7 +191,7 @@
  log_ui = LOG_CATEGORY_GET("jivelite.ui");
  
  /* linux fbcon does not need a mouse */
  -       SDL_putenv("SDL_NOMOUSE=1");
  +       /* SDL_putenv("SDL_NOMOUSE=1"); */
  
  /* initialise SDL */
  if (SDL_Init(SDL_INIT_VIDEO) < 0) {
  
--------------------



Ralphy

*1*-Touch, *4*-Classics, *2*-Booms, *1*-Reverted UE Radio
'Squeezebox client builds'
(https://www.mediafire.com/folder/4q8dvq20iyz9e/Builds) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=LL5P6365KQEXN&lc=CA&item_name=Squeezebox%20client%20builds&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.
------------------------------------------------------------------------
ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=98156

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to