fix strut partial error

Change-Id: I781cf26d2f28a7265e2e5512cb888dce411a70ac
This commit is contained in:
石博文 2016-07-20 10:43:03 +08:00 committed by Hualet Wang
parent 66cabb9c5a
commit 6b1e734dfa

View File

@ -102,7 +102,9 @@ DockSettings::DockSettings(QWidget *parent)
connect(m_itemController, &DockItemController::itemInserted, this, &DockSettings::dockItemCountChanged, Qt::QueuedConnection);
connect(m_itemController, &DockItemController::itemRemoved, this, &DockSettings::dockItemCountChanged, Qt::QueuedConnection);
connect(m_displayInter, &DBusDisplay::PrimaryRectChanged, this, &DockSettings::primaryScreenChanged);
connect(m_displayInter, &DBusDisplay::PrimaryRectChanged, this, &DockSettings::primaryScreenChanged, Qt::QueuedConnection);
connect(m_displayInter, &DBusDisplay::ScreenHeightChanged, this, &DockSettings::primaryScreenChanged, Qt::QueuedConnection);
connect(m_displayInter, &DBusDisplay::ScreenWidthChanged, this, &DockSettings::primaryScreenChanged, Qt::QueuedConnection);
calculateWindowConfig();
}