[gnome-calculator] Preferences: align the label text argument with the last open parenthesis



commit a28032707e19ec5f820d000b454f928625042240
Author: Antonio Ospite <ao2 ao2 it>
Date:   Tue Oct 11 10:47:25 2016 +0200

    Preferences: align the label text argument with the last open parenthesis
    
    Follow the style used for the other labels in the file

 src/math-preferences.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/math-preferences.vala b/src/math-preferences.vala
index 618b45e..d1ab765 100644
--- a/src/math-preferences.vala
+++ b/src/math-preferences.vala
@@ -98,7 +98,7 @@ public class MathPreferencesDialog : Gtk.Dialog
         grid.attach (decimal_places_spin, 1, 2, 1, 1);
 
         label = new Gtk.Label.with_mnemonic (/* Preferences dialog: label for show trailing zeroes switch */
-                                                                   _("Trailing _zeroes"));
+                                             _("Trailing _zeroes"));
         label.xalign = 0;
         label.show ();
         grid.attach (label, 0, 3, 1, 1);
@@ -111,7 +111,7 @@ public class MathPreferencesDialog : Gtk.Dialog
         grid.attach (trailing_zeroes_switch, 1, 3, 1, 1);
 
         label = new Gtk.Label.with_mnemonic (/* Preferences dialog: label for show show thousands separator 
switch */
-                                                                       _("_Thousands separators"));
+                                             _("_Thousands separators"));
         label.xalign = 0;
         label.show ();
         label.mnemonic_widget = thousands_separator_switch;


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