mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-29 22:03:40 -06:00
Docking: Compilation fix
git-svn-id: svn://ultimatepp.org/upp/trunk@628 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
e15b677a9b
commit
5ad2cdec29
1 changed files with 4 additions and 1 deletions
|
|
@ -763,7 +763,10 @@ void DockCont::SyncFrames(bool lock)
|
|||
{
|
||||
bool frames = !lock && (IsDocked() || IsAutoHide());
|
||||
handle.Show(frames);
|
||||
SetFrame(0, frames ? Single<DockCont::DockContFrame>() : NullFrame());
|
||||
if (frames)
|
||||
SetFrame(0, Single<DockCont::DockContFrame>());
|
||||
else
|
||||
SetFrame(0, NullFrame());
|
||||
}
|
||||
|
||||
DockCont::DockCont()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue