From c10dd6736d76db08efeacc8d69d9d09779b404c1 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Fri, 6 Apr 2012 19:10:56 +0200 Subject: [PATCH] spark: fix CFrameBuffer::paintIcon8 this is used in channel search, fixes the radar icon Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/108de97bfb0831c4042b393706b55f39ef574203 Author: Stefan Seyfried Date: 2012-04-06 (Fri, 06 Apr 2012) --- src/driver/framebuffer_spark.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/driver/framebuffer_spark.cpp b/src/driver/framebuffer_spark.cpp index 5024ca995..918710205 100644 --- a/src/driver/framebuffer_spark.cpp +++ b/src/driver/framebuffer_spark.cpp @@ -821,6 +821,8 @@ bool CFrameBuffer::paintIcon8(const std::string & filename, const int x, const i d += stride; } close(lfd); + update_dirty(x, y, x + width, y + height); + blit(); return true; }