diff options
Diffstat (limited to 'c/layout.cpp')
-rw-r--r-- | c/layout.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/c/layout.cpp b/c/layout.cpp index 09c0958..653b675 100644 --- a/c/layout.cpp +++ b/c/layout.cpp @@ -69,11 +69,13 @@ void DlvDragger::Drag(const int, const int y) const void DlvDragger::Reset() const { g_dlv->SetHeight(0); - Pl("cfg","set_dlv_height",0); + extern FileView<CfgA> g_fvCfg; + g_fvCfg->heightDlv = 0; UpdateLayout(); } void DlvDragger::Done() const { - Pl("cfg","set_dlv_height",g_dlv->Height()); + extern FileView<CfgA> g_fvCfg; + g_fvCfg->heightDlv = g_dlv->Height(); } |