From: Dan Breslau Date: Tue, 5 Apr 2016 02:29:33 +0000 (-0400) Subject: Merge branch 'master' of www.project-moonshot.org:/srv/git/moonshot-ui X-Git-Tag: v0.9.6~26 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=moonshot-ui.git;a=commitdiff_plain;h=47af2e6683d93e3ac0425407db4e1793bad168a2 Merge branch 'master' of project-moonshot.org:/srv/git/moonshot-ui --- 47af2e6683d93e3ac0425407db4e1793bad168a2 diff --cc src/moonshot-identity-management-view.vala index 4c343a9,2088e49..caee78e --- a/src/moonshot-identity-management-view.vala +++ b/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;