fix for issue #399
This commit is contained in:
parent
4fa1618f48
commit
fd8261c6a2
@ -235,6 +235,14 @@ checkbox& group::add_option(std::string text)
|
|||||||
group& group::enable_format_caption(bool format)
|
group& group::enable_format_caption(bool format)
|
||||||
{
|
{
|
||||||
impl_->caption.format(format);
|
impl_->caption.format(format);
|
||||||
|
|
||||||
|
// if the caption is already set, make sure the layout is updated
|
||||||
|
if(!caption().empty())
|
||||||
|
{
|
||||||
|
impl_->update_div();
|
||||||
|
impl_->place_content.collocate();
|
||||||
|
API::refresh_window(*this);
|
||||||
|
}
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user