From 33ca5716dd3bb93caf87bce65de15986dde86c63 Mon Sep 17 00:00:00 2001 From: deva Date: Fri, 11 Mar 2011 13:41:42 +0000 Subject: Huge improvements on 'keyboard-only' use. --- client/macro.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'client/macro.cc') diff --git a/client/macro.cc b/client/macro.cc index ad21cc4..0dcf590 100644 --- a/client/macro.cc +++ b/client/macro.cc @@ -61,11 +61,15 @@ void Macro::update(QDomNode &node) name = elem.attribute("name"); iscompleted = elem.attribute("completed", "false") == "true"; + if(drawer == NULL) { + drawer = new MacroDrawer(this, elem.attribute("caption", name)); + if(window == NULL) { isstatic = elem.attribute("static", "false") == "true"; iscompact = elem.attribute("compact", "false") == "true"; - window = new MacroWindow(netcom, templ, isstatic, iscompact, scrollarea); + window = new MacroWindow(netcom, templ, isstatic, iscompact, + scrollarea, drawer); QFont f = window->font(); f.setBold(false); @@ -73,8 +77,6 @@ void Macro::update(QDomNode &node) window->setFont(f); } - if(drawer == NULL) { - drawer = new MacroDrawer(this, elem.attribute("caption", name)); QHBoxLayout *l = new QHBoxLayout(); l->setContentsMargins(10,0,10,0); drawer->setLayout(l); -- cgit v1.2.3