Skip to content

Commit

Permalink
#5827: thicken and monochromise Vector3 property icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Mott committed Oct 26, 2022
1 parent 4c02bee commit d7bff98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified install/bitmaps/icon_vector3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions radiant/ui/einspector/EntityInspector.cpp
Expand Up @@ -276,8 +276,8 @@ void EntityInspector::updateKeyType(wxutil::TreeModel::Row& row)
// Get the type for this key if it exists, and the options
auto keyType = getPropertyTypeForKey(key);

wxutil::Icon icon(keyType.empty() ? _emptyIcon :
wxutil::Icon(_propertyEditorFactory->getBitmapFor(keyType)));
auto icon = keyType.empty() ? _emptyIcon
: wxutil::Icon(_propertyEditorFactory->getBitmapFor(keyType));

// Assign the icon to the column
row[_modelCols.name] = wxVariant(wxDataViewIconText(key, icon));
Expand Down

0 comments on commit d7bff98

Please sign in to comment.