Small changes

* move logging ini file from dataengine to library
* improve dataengine desktop file
* fix configuration warnings with the newest plasma
This commit is contained in:
2016-03-17 19:19:10 +03:00
parent 07c753b703
commit 453d4d5149
5 changed files with 6 additions and 8 deletions

View File

@ -551,8 +551,8 @@ void GraphicalItem::changeValue(const int state)
{
qCDebug(LOG_LIB) << "Current state is" << state;
ui->widget_value->setHidden(state == Qt::Unchecked);
ui->widget_customValue->setHidden(state != Qt::Unchecked);
ui->widget_value->setHidden(state != Qt::Unchecked);
ui->widget_customValue->setHidden(state == Qt::Unchecked);
}