Merge branch 'master' of www.project-moonshot.org:/srv/git/moonshot-ui
authorDan Breslau <dbreslau@painless-security.com>
Tue, 5 Apr 2016 02:29:33 +0000 (22:29 -0400)
committerDan Breslau <dbreslau@painless-security.com>
Tue, 5 Apr 2016 02:29:33 +0000 (22:29 -0400)
1  2 
src/moonshot-identity-management-view.vala

@@@ -515,24 -513,24 +515,39 @@@ public class IdentityManagerView : Wind
              set_prompting_service(request.service);
              make_visible();
          }
 -        this.request_queue.push_tail (request);
 +        this.request_queue.push_tail(request);
 +    }
 +
 +
 +    /** Makes the window visible, or at least, notifies the user that the window
 +     * wants to be visible.
 +     *
 +     * This differs from show() in that show() does not guarantee that the 
 +     * window will be moved to the foreground. Actually, neither does this
 +     * method, because the user's settings and window manager may affect the
 +     * behavior significantly.
 +     */
 +    public void make_visible()
 +    {
 +        set_urgency_hint(true);
 +        present();
      }
  
+     /** Makes the window visible, or at least, notifies the user that the window
+       * wants to be visible.
+       *
+       * This differs from show() in that show() does not guarantee that the 
+       * window will be moved to the foreground. Actually, neither does this
+       * method, because the user's settings and window manager may affect the
+       * behavior significantly.
+       */
+     public void make_visible()
+     {
+         set_urgency_hint(true);
+         present();
+     }
      public IdCard check_add_password(IdCard identity, IdentityRequest request, IdentityManagerModel model)
      {
          IdCard retval = identity;