Skip to content

Commit

Permalink
Merge pull request xbmc#985 from qwerdy/master
Browse files Browse the repository at this point in the history
Fixes Ticket xbmc#12760, Resend all LCD Lines after Screensaver mode
  • Loading branch information
Memphiz committed May 31, 2012
2 parents 78841bd + 42cda74 commit 1495cbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xbmc/linux/XLCDproc.cpp
Expand Up @@ -220,6 +220,9 @@ void XLCDproc::SetBackLight(int iLight)
cmd.append("widget_del xbmc line2\n"); cmd.append("widget_del xbmc line2\n");
cmd.append("widget_del xbmc line3\n"); cmd.append("widget_del xbmc line3\n");
cmd.append("widget_del xbmc line4\n"); cmd.append("widget_del xbmc line4\n");

for(int i=0; i<4; i++)
m_strLine[i] = "";
} }
else if (iLight > 0) else if (iLight > 0)
{ {
Expand Down

0 comments on commit 1495cbe

Please sign in to comment.