[geary/wip/714104-refine-account-dialog] Polish first-run appearance of the accounts editor



commit ccd1c857c365f3d455b0975aa59a510379060aee
Author: Michael Gratton <mike vee net>
Date:   Sun Dec 9 19:16:35 2018 +1100

    Polish first-run appearance of the accounts editor

 src/client/accounts/accounts-editor-add-pane.vala  | 2 +-
 src/client/accounts/accounts-editor-list-pane.vala | 7 +++++--
 ui/accounts_editor_list_pane.ui                    | 1 +
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/src/client/accounts/accounts-editor-add-pane.vala 
b/src/client/accounts/accounts-editor-add-pane.vala
index 6b28061b..f2b120b3 100644
--- a/src/client/accounts/accounts-editor-add-pane.vala
+++ b/src/client/accounts/accounts-editor-add-pane.vala
@@ -91,7 +91,7 @@ internal class Accounts.EditorAddPane : Gtk.Grid, EditorPane {
                     provider,
                     // Translators: Label for adding an email account
                     // account for a generic IMAP service provider.
-                    _("Other email provider")
+                    _("All others")
                 )
             );
             this.receiving_panel.hide();
diff --git a/src/client/accounts/accounts-editor-list-pane.vala 
b/src/client/accounts/accounts-editor-list-pane.vala
index 4d47ccba..131610e5 100644
--- a/src/client/accounts/accounts-editor-list-pane.vala
+++ b/src/client/accounts/accounts-editor-list-pane.vala
@@ -52,6 +52,9 @@ internal class Accounts.EditorListPane : Gtk.Grid, EditorPane {
     [GtkChild]
     private Gtk.ListBox accounts_list;
 
+    [GtkChild]
+    private Gtk.Frame accounts_list_frame;
+
     [GtkChild]
     private Gtk.Label add_service_label;
 
@@ -183,13 +186,13 @@ internal class Accounts.EditorListPane : Gtk.Grid, EditorPane {
             // No accounts are available, so show only the welcome
             // pane and service list.
             this.welcome_panel.show();
-            this.accounts_list.hide();
+            this.accounts_list_frame.hide();
             this.add_service_label.hide();
         } else {
             // There are some accounts available, so show them and
             // the full add service UI.
             this.welcome_panel.hide();
-            this.accounts_list.show();
+            this.accounts_list_frame.show();
             this.add_service_label.show();
         }
     }
diff --git a/ui/accounts_editor_list_pane.ui b/ui/accounts_editor_list_pane.ui
index bc848196..e1c75e8c 100644
--- a/ui/accounts_editor_list_pane.ui
+++ b/ui/accounts_editor_list_pane.ui
@@ -45,6 +45,7 @@
                         <property name="visible">True</property>
                         <property name="can_focus">False</property>
                         <property name="halign">center</property>
+                        <property name="column_spacing">12</property>
                         <child>
                           <object class="GtkImage">
                             <property name="visible">True</property>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]