Don't use a full-size subbitmap for icons for no apparent reason
This commit is contained in:
parent
7d2da48ddb
commit
189615bf48
1 changed files with 2 additions and 4 deletions
|
@ -137,9 +137,6 @@ namespace {
|
|||
|
||||
last_was_sep = false;
|
||||
|
||||
wxBitmap const& bitmap = command->Icon(icon_size);
|
||||
// this hack is needed because ???
|
||||
wxBitmap icon = bitmap.GetSubBitmap(wxRect(0, 0, bitmap.GetWidth(), bitmap.GetHeight()));
|
||||
|
||||
int flags = command->Type();
|
||||
wxItemKind kind =
|
||||
|
@ -147,7 +144,8 @@ namespace {
|
|||
flags & cmd::COMMAND_TOGGLE ? wxITEM_CHECK :
|
||||
wxITEM_NORMAL;
|
||||
|
||||
AddTool(TOOL_ID_BASE + commands.size(), command->StrDisplay(context), icon, GetTooltip(command), kind);
|
||||
wxBitmap const& bitmap = command->Icon(icon_size);
|
||||
AddTool(TOOL_ID_BASE + commands.size(), command->StrDisplay(context), bitmap, GetTooltip(command), kind);
|
||||
|
||||
commands.push_back(command);
|
||||
needs_onidle = needs_onidle || flags != cmd::COMMAND_NORMAL;
|
||||
|
|
Loading…
Reference in a new issue