JurajKubelka / PharoSprint

Pharo Sprint Application to support coordination and collaboration during Bug Days a.k.a. Pharo Sprint Days

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Opening an issue on Fogbuz by double clicking?

bergel opened this issue · comments

Opening an issue on Fogbugz I the most frequent action I do. However, doing this action takes time (i.e., right-click, and then click on an item). Why not double clicking on an issue to open it on Fogbugz?

I do not like the double click because it is not intuitive.
But if it is supported by Glamour, we can add it for now.

Glamour example for double click action:

browser := GLMTabulator new.
browser column: #one.
browser transmit to: #one; andShow: [ :a |
	a fastList 
		title: 'List';
		onChangeOfPort: #strongSelection 
			act: [ :presentation :entity | self inform: 'STRONG selection on ', presentation strongSelection asString ] ].

browser openOn: Object allSubclasses  

Excellent!