summaryrefslogtreecommitdiff
path: root/client/macrowindow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/macrowindow.cc')
-rw-r--r--client/macrowindow.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/client/macrowindow.cc b/client/macrowindow.cc
index d9060b0..b37fe5f 100644
--- a/client/macrowindow.cc
+++ b/client/macrowindow.cc
@@ -93,7 +93,14 @@ void MacroWindow::initMacro(QDomNode &node)
// Nothing to do here
} else if(xml_elem.tagName() == "resume") {
QString resume = xml_elem.text();
- ((ResumeWidget*)collapsedWidget())->setText(resume);
+ ResumeWidget::state_t state = ResumeWidget::OLD;
+ if(xml_elem.hasAttribute("state")) {
+ if(xml_elem.attribute("state") == "old") state = ResumeWidget::OLD;
+ if(xml_elem.attribute("state") == "new") state = ResumeWidget::NEW;
+ if(xml_elem.attribute("state") == "dirty") state = ResumeWidget::DIRTY;
+ }
+
+ ((ResumeWidget*)collapsedWidget())->setText(resume, state);
} else if(xml_elem.tagName() == "script") {
if(xml_elem.hasAttribute("language") &&