From de49a051ea3f25e37350fc1add88ab5a00eb2d53 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Sat, 6 Apr 2013 22:09:28 -0400 Subject: [PATCH] Update expander arrows to point right or down (if expanded) ... like BeOS R5. I looked in the commmit logs for this one and there wasn't really any explination for why this got changed, so, I'm changing it back to the way it was in R5 which is right arrow for unexpanded, down arrow for expanded. Please yell at me if this change was intentional. --- src/apps/deskbar/TeamMenuItem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/deskbar/TeamMenuItem.cpp b/src/apps/deskbar/TeamMenuItem.cpp index 692f3ce17e..dfae4fdd71 100644 --- a/src/apps/deskbar/TeamMenuItem.cpp +++ b/src/apps/deskbar/TeamMenuItem.cpp @@ -415,8 +415,8 @@ TTeamMenuItem::DrawContent() ContentLocation().y + ((frame.Height() - rect.Height()) / 2))); if (be_control_look != NULL) { - uint32 arrowDirection = fExpanded - ? BControlLook::B_UP_ARROW : BControlLook::B_DOWN_ARROW; + uint32 arrowDirection = fExpanded ? BControlLook::B_DOWN_ARROW + : BControlLook::B_RIGHT_ARROW; be_control_look->DrawArrowShape(menu, rect, rect, menu->LowColor(), arrowDirection, 0, B_DARKEN_3_TINT); } else {