After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 610027 - Search results should display running apps, switch to them when selected
Search results should display running apps, switch to them when selected
Status: RESOLVED FIXED
Product: gnome-shell
Classification: Core
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
Depends on:
Blocks:
 
 
Reported: 2010-02-15 19:14 UTC by Allan Day
Modified: 2010-02-16 22:43 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Adjust behavior of search results to match app well (1.90 KB, patch)
2010-02-16 13:41 UTC, Florian Müllner
reviewed Details | Review
Adjust behavior of search results to match app well (1.77 KB, patch)
2010-02-16 17:22 UTC, Florian Müllner
committed Details | Review

Description Allan Day 2010-02-15 19:14:22 UTC
Running applications are not indicated in search results. A new window is opened when a running application is selected from search results, rather than that window being switched to. This behaviour is contrary to the way the application well works.

Steps to reproduce:
 1. Open a terminal window.
 2. Search for 'terminal' in the overlay search box.
 3. Select Terminal from the search results.
Comment 1 Florian Müllner 2010-02-16 13:41:36 UTC
Created attachment 153915 [details] [review]
Adjust behavior of search results to match app well

Currently, activating a search result always opens a new window. Change
this behavior, so that if an application has open windows, the most
recently used one is activated instead.

Also change the implementation of dnd of search results to allow providers
to treat results activated via dnd differently.
Comment 2 Colin Walters 2010-02-16 15:07:37 UTC
Review of attachment 153915 [details] [review]:

::: js/ui/dash.js
@@ +392,3 @@
 
+            this.provider.shellWorkspaceLaunch(this.metaInfo.id);
+        try {

Hm, what about an optional argument for activateResult?  Or a new function activateResultFull?

It seems cleaner to me to either say:

if (this.provider.activateResultFull) {
  this.provider.activateResultFull(id, true);
} else {
 ...
}

or:

if (this.provider.canDragActivate()) {
  this.provider.dragActivate(id);
} else {
}
Comment 3 Florian Müllner 2010-02-16 17:22:40 UTC
Created attachment 153943 [details] [review]
Adjust behavior of search results to match app well

(In reply to comment #2)
Oh, I wasn't aware that method existance can be tested with a simple if. That's
obviously much better than my exception hack ...


> Hm, what about an optional argument for activateResult?  Or a new function
> activateResultFull?

I don't know if I like that idea - in my opinion, optional arguments should
only be optional for the caller, but not for the callee.

Another function activateResultFull() would do though ...

 
> It seems cleaner to me to either say:
> 
> if (this.provider.activateResultFull) {
>   this.provider.activateResultFull(id, true);
> }
> 
> or:
> 
> if (this.provider.canDragActivate()) {
>   this.provider.dragActivate(id);
> }

Both look good to me - for the updated patch I used the latter (as dragActivateResult), but without the additional method for the check.
Comment 4 Colin Walters 2010-02-16 22:35:45 UTC
Review of attachment 153943 [details] [review]:

Looks great, thanks!
Comment 5 Florian Müllner 2010-02-16 22:43:08 UTC
Attachment 153943 [details] pushed as 97e19d7 - Adjust behavior of search results to match app well