forked from qt-creator/qt-creator
ThemeEditor: Fix some style issues
Change-Id: I43e96ec0633cfbc3606969af3e44e2dd994c49ff Reviewed-by: Thorben Kroeger <thorbenkroeger@gmail.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
97e9760a9a
commit
0c95024c9b
@@ -87,15 +87,10 @@ QWidget *ThemeSettingsItemDelegate::createColorEditor(QWidget *parent, const QSt
|
||||
const bool isUnnamed = colorRole->colorVariable()->variableName().isEmpty();
|
||||
const QColor currentColor = colorRole->colorVariable()->color();
|
||||
|
||||
int k = 0;
|
||||
if (isUnnamed) {
|
||||
cb->addItem(makeIcon(currentColor), tr("<Unnamed> (Current)"));
|
||||
++k;
|
||||
} else {
|
||||
cb->addItem(makeIcon(currentColor),
|
||||
colorRole->colorVariable()->variableName()+QString(tr(" (Current)")));
|
||||
++k;
|
||||
}
|
||||
isUnnamed ? tr("<Unnamed> (Current)")
|
||||
: colorRole->colorVariable()->variableName() + tr(" (Current)"));
|
||||
int k = 1;
|
||||
|
||||
foreach (ColorVariable::Ptr namedColor, model->m_colors->colorVariables()) {
|
||||
if (namedColor->variableName().isEmpty())
|
||||
@@ -148,16 +143,13 @@ QWidget *ThemeSettingsItemDelegate::createEditor(QWidget *parent, const QStyleOp
|
||||
m_comboBox = cb;
|
||||
return cb;
|
||||
}
|
||||
case ThemeSettingsTableModel::SectionColors: {
|
||||
case ThemeSettingsTableModel::SectionColors:
|
||||
return createColorEditor(parent, option, index);
|
||||
}
|
||||
case ThemeSettingsTableModel::SectionFlags: {
|
||||
case ThemeSettingsTableModel::SectionFlags:
|
||||
return QStyledItemDelegate::createEditor(parent, option, index);
|
||||
}
|
||||
default: {
|
||||
default:
|
||||
qWarning("unhandled section");
|
||||
return 0;
|
||||
}
|
||||
} // switch
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user