- BColumnListView now accepts middle click as well as double click
  to resize a column to preferred.
This commit is contained in:
Rene Gollent 2013-10-20 15:21:13 -04:00
parent ebea2b79f1
commit 1c9b1111f7
1 changed files with 1 additions and 1 deletions

View File

@ -2792,7 +2792,7 @@ TitleView::MouseDown(BPoint position)
int32 clicks = 0;
Window()->CurrentMessage()->FindInt32("clicks", &clicks);
if (clicks == 2) {
if (clicks == 2 || buttons == B_TERTIARY_MOUSE_BUTTON) {
ResizeSelectedColumn(position, true);
fCurrentState = INACTIVE;
break;