From bbe08f156da7821c797acd85227633f1b4fac435 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Fri, 28 Sep 2012 14:33:26 +0200 Subject: [PATCH] Update Overlay icon in MiniTargetSelector on Kit changes This makes sure the icon is updated when changing devices in the kit. Task-number: QTCREATORBUG-7938 Change-Id: I6d5a07993593084a6226cfa044bb899d74cb5e15 Reviewed-by: Daniel Teske --- src/plugins/projectexplorer/target.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/projectexplorer/target.cpp b/src/plugins/projectexplorer/target.cpp index 2554d4973e3..155cbb32bb5 100644 --- a/src/plugins/projectexplorer/target.cpp +++ b/src/plugins/projectexplorer/target.cpp @@ -188,6 +188,7 @@ void Target::handleKitUpdates(Kit *k) setDisplayName(k->displayName()); setIcon(k->icon()); updateDefaultDeployConfigurations(); + updateDeviceState(); // in case the device changed... emit kitChanged(); }