From f912b7096c1d886c9670834d7350cabb5e10f750 Mon Sep 17 00:00:00 2001 From: satbaby Date: Wed, 9 Jan 2013 17:37:36 +0100 Subject: [PATCH] bouqueteditor:-fix paint infox box --- src/gui/bedit/bouqueteditor_channels.cpp | 2 +- src/gui/bedit/bouqueteditor_chanselect.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/bedit/bouqueteditor_channels.cpp b/src/gui/bedit/bouqueteditor_channels.cpp index 86cf9a28d..e951bbed3 100644 --- a/src/gui/bedit/bouqueteditor_channels.cpp +++ b/src/gui/bedit/bouqueteditor_channels.cpp @@ -222,7 +222,7 @@ void CBEChannelWidget::paintItem2DetailsLine (int pos, int /*ch_index*/) //infobox if (ibox == NULL) ibox = new CComponentsInfoBox(x, ypos2, width, info_height, false); - ibox->paint(false); + ibox->paint(false,true); } } diff --git a/src/gui/bedit/bouqueteditor_chanselect.cpp b/src/gui/bedit/bouqueteditor_chanselect.cpp index 9eadfe56c..7abb90115 100644 --- a/src/gui/bedit/bouqueteditor_chanselect.cpp +++ b/src/gui/bedit/bouqueteditor_chanselect.cpp @@ -254,7 +254,7 @@ void CBEChannelSelectWidget::paintItem2DetailsLine (int pos, int /*ch_index*/) //infobox if (ibox == NULL) ibox = new CComponentsInfoBox(x, ypos2, width, info_height, false); - ibox->paint(false); + ibox->paint(false,true); } }