Improve icon and label behavior for target selector

I modified the text margins, removed the inconsistent
"No project" label and made sure we fall back to
the default computer icon when no project is open.
This commit is contained in:
Jens Bache-Wiig
2010-03-19 18:40:00 +01:00
parent 80858f810b
commit f014f3a424
2 changed files with 5 additions and 5 deletions

View File

@@ -550,12 +550,12 @@ void MiniProjectTargetSelector::updateAction()
{
Project *project = ProjectExplorerPlugin::instance()->startupProject();
QString projectName = tr("No Project");
QString projectName;;
QString targetName;
QString targetToolTipText;
QIcon targetIcon;
QString buildConfig;
QString runConfig;
QIcon targetIcon = style()->standardIcon(QStyle::SP_ComputerIcon);
if (project) {
projectName = project->displayName();