[gnome-builder/wip/gtk4-port: 1018/1774] plugins/git: add blurb about what config is affected
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/gtk4-port: 1018/1774] plugins/git: add blurb about what config is affected
- Date: Mon, 11 Jul 2022 22:31:31 +0000 (UTC)
commit 6f8cd45b94005e67951dc96062cd3ce5be646ffd
Author: Christian Hergert <chergert redhat com>
Date: Sat May 14 15:20:27 2022 -0700
plugins/git: add blurb about what config is affected
This makes it more clear about whether --global equivalent is in use.
src/plugins/git/gbp-git-preferences-addin.c | 37 +++++++++++++++++++++++++----
1 file changed, 32 insertions(+), 5 deletions(-)
---
diff --git a/src/plugins/git/gbp-git-preferences-addin.c b/src/plugins/git/gbp-git-preferences-addin.c
index 78aa582df..b5e2da369 100644
--- a/src/plugins/git/gbp-git-preferences-addin.c
+++ b/src/plugins/git/gbp-git-preferences-addin.c
@@ -146,11 +146,38 @@ create_entry_row (const char *page_name,
g_assert (GBP_IS_GIT_VCS_CONFIG (config));
- if (FALSE) {}
- else if (g_strcmp0 (entry->name, "name") == 0)
- adw_preferences_group_add (group, create_entry (config, _("Author"), IDE_VCS_CONFIG_FULL_NAME));
- else if (g_strcmp0 (entry->name, "email") == 0)
- adw_preferences_group_add (group, create_entry (config, _("Email"), IDE_VCS_CONFIG_EMAIL));
+ if (g_strcmp0 (entry->name, "name") == 0)
+ {
+ adw_preferences_group_add (group, create_entry (config, _("Author"), IDE_VCS_CONFIG_FULL_NAME));
+ return;
+ }
+
+ if (g_strcmp0 (entry->name, "email") == 0)
+ {
+ const char *title;
+ GtkWidget *label;
+
+ adw_preferences_group_add (group, create_entry (config, _("Email"), IDE_VCS_CONFIG_EMAIL));
+
+ /* After the email row, we want to add a blurb about whether this
+ * will affect the global or per-project settings.
+ */
+ if (mode == IDE_PREFERENCES_MODE_PROJECT)
+ title = _("The Git configuration options above effect current project only.");
+ else
+ title = _("The Git configuration options above effect global defaults.");
+
+ label = g_object_new (GTK_TYPE_LABEL,
+ "css-classes", (const char * const[]) { "caption", "dim-label", NULL },
+ "xalign", .0f,
+ "margin-top", 15,
+ "single-line-mode", TRUE,
+ "label", title,
+ NULL);
+ adw_preferences_group_add (group, label);
+
+ return;
+ }
}
static const IdePreferencePageEntry pages[] = {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]