diff options
| author | deva <deva> | 2009-07-03 11:59:24 +0000 | 
|---|---|---|
| committer | deva <deva> | 2009-07-03 11:59:24 +0000 | 
| commit | 82c32c05eb4741e98736099c456b3ffc93c755af (patch) | |
| tree | 4d68d0a1d79e3f1821a541c3f50060c80d89953f /client/macrowindow.cc | |
| parent | cca848759185ced5826194a7bbf4932881aee224 (diff) | |
Some tweaking in the new dependency system. Mostly GUI stuff.
Diffstat (limited to 'client/macrowindow.cc')
| -rw-r--r-- | client/macrowindow.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/client/macrowindow.cc b/client/macrowindow.cc index db6ad53..a96964b 100644 --- a/client/macrowindow.cc +++ b/client/macrowindow.cc @@ -400,7 +400,7 @@ void MacroWindow::setActive(bool active)    if(this->active == active) return;    this->active = active; -  if(active == false) setEnabled(false); -  else setEnabled(true); +  setEnabled(active); +    emit activationChanged(active);  }  | 
