diff --git a/escher/src/scroll_view_indicator.cpp b/escher/src/scroll_view_indicator.cpp index e06e6bc19..1b17c8e47 100644 --- a/escher/src/scroll_view_indicator.cpp +++ b/escher/src/scroll_view_indicator.cpp @@ -15,6 +15,10 @@ ScrollViewIndicator::ScrollViewIndicator(ScrollViewIndicator::Direction directio } void ScrollViewIndicator::drawRect(KDContext * ctx, KDRect rect) const { + if (m_start <= 0 && m_end >=1) { + return; + } + ctx->fillRect(bounds(), k_backgroundColor); KDRect indicatorFrame = KDRectZero; if (m_direction == Direction::Horizontal) {