Profile: begin untangling from MainWindow

Use a signal to turn the toolbar on or off.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-11-05 09:32:19 -08:00
parent fcf47552c6
commit 533d724d1b
3 changed files with 6 additions and 2 deletions

View file

@ -919,7 +919,7 @@ void ProfileWidget2::setEmptyState()
setBackgroundBrush(getColor(::BACKGROUND, isGrayscale));
dataModel->clear();
currentState = EMPTY;
MainWindow::instance()->setEnabledToolbar(false);
emit enableToolbar(false);
fixBackgroundPos();
background->setVisible(true);
@ -974,7 +974,7 @@ void ProfileWidget2::setProfileState()
MainWindow::instance()->enableShortcuts();
currentState = PROFILE;
MainWindow::instance()->setEnabledToolbar(true);
emit enableToolbar(true);
toolTipItem->readPos();
setBackgroundBrush(getColor(::BACKGROUND, isGrayscale));