mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-16 23:12:57 +02:00
rendering invisible elements too
This commit is contained in:
parent
d4f2be3fd2
commit
53f989634b
@ -114,7 +114,7 @@ std::string Control::getToolTip() const
|
||||
|
||||
void Control::renderHead(const RenderContext& context, std::ostream& str) const
|
||||
{
|
||||
if (isVisible())
|
||||
//also render invisible stuff if (isVisible())
|
||||
{
|
||||
_pCell->renderHead(context, str);
|
||||
}
|
||||
@ -123,7 +123,7 @@ void Control::renderHead(const RenderContext& context, std::ostream& str) const
|
||||
|
||||
void Control::renderBody(const RenderContext& context, std::ostream& str) const
|
||||
{
|
||||
if (isVisible())
|
||||
//also render invisible stuff if (isVisible())
|
||||
{
|
||||
_pCell->renderBody(context, str);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user