GNOME Bugzilla – Bug 674674
right click does nothing
Last modified: 2016-03-31 13:55:57 UTC
It is a bit odd that right click does nothing in the boxes overview. We should probably be consistent with what Documents does. There are really two options. One is to so the same as left click and the other is what boxes is doing and shortcut to the selection mode.
Created attachment 227109 [details] [review] collection: Enter selection mode on right-click Lets handle right click the same way as Documents does: If there is a box under the cursor, enter selection mode and select the box. Note: Unlike Documents, we are not resetting selection when exiting selection mode and this patch makes this bug even more annoying so that should be the next thing to fix.
Review of attachment 227109 [details] [review]: Looks good ::: src/collection-view.vala @@ +402,1 @@ return false; This test can be moved before if (path != null) button_press_item_path = path.to_string (); and then the "if (path != null)" test can be removed.
Created attachment 227193 [details] [review] collection: Enter selection mode on right-click Lets handle right click the same way as Documents does: If there is a box under the cursor, enter selection mode and select the box. Note: Unlike Documents, we are not resetting selection when exiting selection mode and this patch makes this bug even more annoying so that should be the next thing to fix.
Attachment 227193 [details] pushed as 0fab363 - collection: Enter selection mode on right-click