#371 closed bug (invalid)
In MenuItem, the bgolor of MarkSymbol and SubmenuSymbol.
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | - General | Version: | |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
MenuItem.cpp
BMenuItem::Draw()
+ BMenu *root = fSuper; + if (Menu()->Supermenu()) root = Menu()->Supermenu();
- rgb_color noTint = ui_color(B_MENU_BACKGROUND_COLOR);
+ rgb_color noTint = root->ViewColor();
BMenuItem::DrawMarkSymbol(rgb_color bgColor)
BRect r(fBounds);
- r.right = r.left + r.Height();
+ r.right = r.left + Menu()->fPad.left;
r.top += 2; r.bottom -= 2; r.left += 1; r.right -= 5;
+ fSuper->SetLowColor(bgColor); + fSuper->FillRect(r,B_SOLID_LOW);
BMenuItem::DrawSubmenuSymbol(rgb_color bgColor)
+ fSuper->SetLowColor(bgColor); + fSuper->FillRect(r,B_SOLID_LOW);
Attachments (1)
Change History (5)
by , 19 years ago
Attachment: | menuitem.a.png added |
---|
comment:1 by , 19 years ago
Summary: | In MenuItem, the bgolor of MarkSymbol and SubmenuSymbol. → In MenuItem, the bgolor of MarkSymbol and SubmenuSymbol. |
---|
comment:3 by , 19 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:4 by , 19 years ago
(In reply to comment #2)
not a bug
Sorry. Because it is not a bug, it withdraws.
However, it is not a design of R5. Where is the design reported?
After it changes