Fix service prompt (again)
authorDan Breslau <dbreslau@painless-security.com>
Tue, 2 Aug 2016 21:32:07 +0000 (17:32 -0400)
committerDan Breslau <dbreslau@painless-security.com>
Tue, 2 Aug 2016 21:32:07 +0000 (17:32 -0400)
src/moonshot-identity-management-view.vala

index b7cb972..c888762 100644 (file)
@@ -446,8 +446,7 @@ public class IdentityManagerView : Window {
     {
         clear_selection_prompts();
 
-        var prompting_service = new Label(_(""));
-        prompting_service.set_label( _("Identity requested for service:\n%s").printf(service));
+        var prompting_service = new Label(_("Identity requested for service:\n%s").printf(service));
         prompting_service.set_line_wrap(true);
 
         // left-align
@@ -458,6 +457,7 @@ public class IdentityManagerView : Window {
 
         this.service_prompt_vbox.pack_start(prompting_service, false, false, 12);
         this.service_prompt_vbox.pack_start(selection_prompt, false, false, 2);
+        this.service_prompt_vbox.show_all();
     }
 
     private void clear_selection_prompts()