[gnome-control-center] background: fix parameter indentation



commit 7f4a7c125f1f7a4f5c55cda09211828fd6980817
Author: Amy <apark0006 student cerritos edu>
Date:   Wed Jun 15 19:24:35 2022 +0000

    background: fix parameter indentation
    
    Commit d2474bf0 ("background: revert false indentation") fixed a warning
    which sprung from improper indentation of a function call. To comply
    with project style, the parameter list's indentation must also be
    adjusted. This issue was pointed out by Georges (@fearanon).
    
    This patch changes the indentation of the parameters in compliance.

 panels/background/cc-background-chooser.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/panels/background/cc-background-chooser.c b/panels/background/cc-background-chooser.c
index 151909268..11b53088b 100644
--- a/panels/background/cc-background-chooser.c
+++ b/panels/background/cc-background-chooser.c
@@ -158,9 +158,9 @@ create_widget_func (gpointer model_item,
   if (button)
     gtk_overlay_add_overlay (GTK_OVERLAY (overlay), button);
   gtk_accessible_update_property (GTK_ACCESSIBLE (overlay),
-                                              GTK_ACCESSIBLE_PROPERTY_LABEL,
-                                              cc_background_item_get_name (item),
-                                              -1);
+                                  GTK_ACCESSIBLE_PROPERTY_LABEL,
+                                  cc_background_item_get_name (item),
+                                  -1);
 
 
   child = gtk_flow_box_child_new ();


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